...a file and then reading it and it doesn't work (although it's working with other numbers)
here's the code:
#include <stdio.h>
int main() {
FILE *fp;
unsigned char val1,val2;
val1 = 26;
printf("%d\n",val1);
fp = fopen("test","w");
fwrite(&val1,1,1,fp);
fclose(fp);
fp =...