#include main(){ FILE *f; int x=666; f = fopen("curso2005fileb","r+b"); fread(&x,sizeof(int),1,f); fclose(f); printf("%d\n",x); }