Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Last active July 17, 2017 16:47
Show Gist options
  • Save ThePratikSah/0b2659226981e23e17392453b336fd34 to your computer and use it in GitHub Desktop.
Save ThePratikSah/0b2659226981e23e17392453b336fd34 to your computer and use it in GitHub Desktop.
/*
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