Skip to content

Instantly share code, notes, and snippets.

@Yago
Created January 29, 2014 09:44
Show Gist options
  • Save Yago/1aa8cace2b5c46c87f00 to your computer and use it in GitHub Desktop.
Save Yago/1aa8cace2b5c46c87f00 to your computer and use it in GitHub Desktop.
C - Expressions ternaires
// if/else :
if (majeur){
age = 18;
}else {
age = 17;
}
// Ternaire
age = (majeur) ? 18 : 17;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment