/* * * Brief demonstration of statements and blocks * * Author: Kun Deng */ #include 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; }