Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 2, 2019 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b4821a7bd0962c8662c40c44192ba1b7 to your computer and use it in GitHub Desktop.
Save parzibyte/b4821a7bd0962c8662c40c44192ba1b7 to your computer and use it in GitHub Desktop.
#include<stdio.h>// printf
#include<stdbool.h>// Booleanos
int main(){
bool mayorDeEdad = true;
if(mayorDeEdad){
printf("Eres mayor de edad");
}else{
printf("NO eres mayor de edad");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment