Skip to content

Instantly share code, notes, and snippets.

Created May 9, 2014 23:23
Show Gist options
  • Save anonymous/d733ca6cc4e9296d45ee to your computer and use it in GitHub Desktop.
Save anonymous/d733ca6cc4e9296d45ee to your computer and use it in GitHub Desktop.
#include <stdio.h>
#define SIM 1
#define NAO 0
int main() {
//vamos ver se vai ter copa mesmo...
int vai_ter_copa;
// primeiro disseram que ia ter copa, fiquei feliz =)
vai_ter_copa = SIM;
// depois disseram que não ia ter copa, fiquei triste =\
vai_ter_copa = NAO;
// mas e aí? Quero saber se vai ter ou não
if (vai_ter_copa == SIM)
printf ("Vai ter copa sim");
else
printf ("Não vai ter copa");
// fiquei confuso com o resultado D:
return 0;
}
@ezefranca
Copy link

Daora

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment