Pick up on 3.4 Switch
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
*
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user