Created
September 14, 2012 22:54
-
-
Save travisperson/3725478 to your computer and use it in GitHub Desktop.
Stats of file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "functions.h" | |
FILE * open_input_file (void) | |
{ | |
FILE * input = NULL; | |
input = fopen("input.dat", 'r'); | |
return input; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "functions.h" | |
int main (void) | |
{ | |
FILE * input_dat = NULL; | |
input_dat = open_input_file(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment