Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
5 views11 pages

Conditional Statements Notes

c programming

Uploaded by

b224006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views11 pages

Conditional Statements Notes

c programming

Uploaded by

b224006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

Conditional statements

Conditional Statements if statement

if else statement

nested if statement

else if ladder statement

switch statement
conditional (if statement)

; //no curly braces require for


one statement but for more than one we use curly braces.
Flow chart for if statement
Start

False
Condition

True
If Statement block;

End
If else statement
Flow chart for if else

Start

False
Condition

True
else
If statement statement
block block

End
ELSE IF LADDER STATEMENT
ELSE IF LADDER FLOW CHART
Start

condition True Statement


1 1

False
True Else if
condition
statement
2
1

False
True Else if
condition
statement
3
2

False End
Else
statement
Nested if statement
Nested if statement flow chart
Start

If False
condition

True
Another If
body

Else
After if body
Statemen
t

Stop
Switch statement
Flow chart for switch statement
Start

Switch (expression)

True Statement
Case 1 1
Break;
False
True Statement
Case
2
2
Break;
False
True Statement
Case n n
Break;

True
Default Statement
End
default

You might also like