Last active
July 17, 2017 16:47
-
-
Save ThePratikSah/0b2659226981e23e17392453b336fd34 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Pratik Sah | |
Topic: Syntax of if else statement | |
*/ | |
main(){ | |
if (condition) { | |
statement 1; | |
statement 2; | |
} | |
else { | |
statement 3; | |
statement 4; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment