
Programming basic syntax of Making Decision and L ooping Hello Programmer! Today I want explain and show to you about some syntax in C programming language. Let’s start and Enjoy! Making Decision How to use making decision on programming? Making Decision used when you want to execute a syntax or select some statements to be executed base on outcome of condition (whether is true or false). In Making Decision on C there are: Ø If statement (if) Ø If else statement (if else) Ø Nested if else statement (if elseif else) Ø Switch case construct Let me give you an example, this is the syntax when you want to make a if statement,if else statement, if elseif else statement and switch case. Ø If statement: is used when you want to execute one condition is true Example: (Input) When you run the if statement will show this output: (Output) ...