Reputation: 121
I've realized that my much bigger file is failing because it can't properly read the first integer in a binary file. This is my test file I've set up to do only that. I know that the int I'm reading will always be 1 byte so I read the data into a char and then cast it as a short. It got this working at some point in the past but I somehow messed it up when cleaning up my code.
At this point the program is printing
"The integer is 127"
When it should be printing
"The integer is 1"
Does anybody know why this may be?
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[]){
FILE *inp;
char r;
short i;
if ((inp = fopen(argv[0],"r")) == NULL){
printf("could not open file %s for reading\n",argv[1]);
exit(1);}
fread((void *)&r,(size_t) 1,(size_t) 1, inp);
i = (short)r;
printf("The integer is %d\n",i);
}
Upvotes: 10
Views: 29338
Reputation: 8861
You should call fread
like this to read an int
:
int num;
fread(&num, sizeof(int), 1, inp);
Also, it would be wise to check the return value which, if successful in your case, should be 1:
#include <errno.h>
errno = 0;
if(fread(&num, sizeof(int) 1, inp) != 1)
strerror(errno);
Edit
If the value you're reading is only 8 bits, you should use unsigned char
to read it like so:
unsigned char num;
fread(&num, 1, 1, inp);
Upvotes: 7
Reputation: 753455
You fopen(argv[0], "r")
, but report an error opening argv[1]
. It is not normal to open your program for reading (though if the wind is blowing right and the phase of the moon is correct, you might get away with it).
The chances are you intended to use:
if (argc != 2)
…report usage…
if ((inp = fopen(argv[1], "r")) == NULL)
…report error…
Also, the }
at the end of the line (as in exit(1);}
) is a very weird layout convention. Personally, I loathe it. Fortunately, I've only seen it on SO.
Upvotes: 3