1#include <studio.h>
2int main()
3{
4 if (logic goes here)
5 {
6 CODE
7 }
8 else if (logic)
9 {
10 CODE
11 }
12 else{
13 CODE
14 }
15 return 0
16}
1if ( TRUE ) {
2 /* Execute these statements if TRUE */
3}
4else {
5 /* Execute these statements if FALSE */
6}
7