23 lines
385 B
C
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;
|
|
}
|