Skip to content

Instantly share code, notes, and snippets.

@schweigert
Created October 20, 2015 14:44
Show Gist options
  • Select an option

  • Save schweigert/04ceede95bb9f3af1671 to your computer and use it in GitHub Desktop.

Select an option

Save schweigert/04ceede95bb9f3af1671 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void){
// CONDICAO
if ( (2 == 2 || 2==3 || 2 > 3 || 2 < 3) & !(2<1)){
printf ("Olá mundo\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment