C language learned by suffering
C language learned by suffering
The screen disappears instantly.
The screen disappears instantly and the results of the execution are not known.
The following instruction can be inserted at the end of the program to pause the execution screen.
In practice, this is incorporated at the end of the main function as follows
Note that this is not the correct usage of these two instructions.
Use only in the practice phase.
sum.c
fflush(stdin);
getchar();
In practice, this is incorporated at the end of the main function as follows
sum.c
int main(void)
{
/* Other processing */
fflush(stdin);
getchar();
return 0;
}
Note that this is not the correct usage of these two instructions.
Use only in the practice phase.
About this Site
The C language (bitter C), which is learned by suffering, is
This is the definitive C language introductory site.
It systematically explains the basic functions of the C language and
It is as complete as or better than any book on the market.