
Read it right next to your computer.
Book version bitter C
#include <stdio.h>
int main(void)
{
printf("%d\n", 20 / 7);
printf("%f\n", 20.0 / 7.0);
return 0;
}
#include <stdio.h>
int main(void)
{
printf("%d / %d = %d ... %d\n", 40, 13, 40 / 13, 40 % 13);
return 0;
}
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.