
Read it right next to your computer.
Book version bitter C
fpos_t GetFileSize(const char* FileName[])
{
fpos_t fsize = 0;
FILE* fp = fopen(FileName, "rb");
/* Fileサイズを調査 */
fseek(fp, 0, SEEK_END);
fgetpos(fp, &fsize);
fclose(fp);
return fsize;
}
fpos_t fsize = 0;
fpos_t fsizeb = fseek(fp,0,SEEK_END);
fgetpos(fp,&fsize);
fseek(fp,fsizeb,SEEK_SET);
Learning C language through suffering (Kushi C) is
This is the definitive introduction to the C language.
It systematically explains the basic functions of the C language.
The quality is equal to or higher than commercially available books.