Pick up on 3.4 Switch

This commit is contained in:
kdeng00
2020-10-19 21:14:21 -04:00
parent ad935287dd
commit 4ca75f9f09
4 changed files with 196 additions and 0 deletions
+22
View File
@@ -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;
}