I agree with Jon Cage answer (upvote him, not me!)
Also note that (a long time ago), Windows/DOS systems needed binary files to be opened with 'wb', 'rb' instead of 'w' and 'r'. I'm not sure it is still the case, but there's no problem trying.
Here's a bit of code to get things more clear:
short int x= 254;
int nwritten;
FILE * f1 = fopen("infile" ,"w+b");
nwritten=fwrite (&x , 1 , sizeof(short int ) , f1 ); /* check number of shorts written */
if (nwritten != 1) fprintf(stderr,"Error: %d short written\n",nwritten);
And for the reading part:
short int y ;
int nread;
nread=fread(&y , sizeof(short int), 1 ,f1); /* check number of shorts read */
if (nread == 1) printf("%d" , y);
else fprintf(stderr,"Error: could not read 1 short int (%d read)\n",nread);
Also, remember that the position inside the file is incremented after each read/write. You might want to get back to the start of the file before reading. Do this either by closing/reopening the file as in Jon answer or by seeking to the start using:
fseek(f1,0L,SEEK_SET); /* you also can use rewind(f1); for the same result */
Full code:
short int x= 254;
int nwritten;
FILE * f1 = fopen("infile" ,"w+b");
nwritten=fwrite (&x , 1 , sizeof(short int ) , f1 ); /* check number of shorts written */
if (nwritten != 1) fprintf(stderr,"Error: %d short written\n",nwritten);
short int y ;
int nread;
fseek(f1,0L,SEEK_SET); /* get back to the start */
nread=fread(&y , sizeof(short int), 1 ,f1); /* check number of shorts read */
if (nread == 1) printf("%d" , y);
else fprintf(stderr,"Error: could not read 1 short int (%d read)\n",nread);