Files
learning_c/ch_03/statements_and_blocks/main.c
T
2020-10-19 21:14:21 -04:00

23 lines
385 B
C

/*
*
* Brief demonstration of statements and blocks
*
* Author: Kun Deng
*/
#include <stdio.h>
int main()
{
// Below are some statements. A statement is considered one when
// the semicolon is the last character of the statement. The
// semicolon serves as a statement terminator.
int x = 48;
x /= 4;
printf("Print statment %d\n", x);
return 0;
}