Hi Guys,
I need some advice on reading an integer from a file.
The file would always have one integer. Once the integer is
read in, I would use this in 'if else' statement to find the outcome
f = fopen (fileName, "r");
if (f == NULL)
return 0;
fread();
fclose (f);
Can I use fread to perform this task?
Thanks