Skip to content

Instantly share code, notes, and snippets.

@nykyrian
Created August 24, 2019 15:48
Show Gist options
  • Save nykyrian/cc717e2336ed66d7232a3ce4431fea86 to your computer and use it in GitHub Desktop.
Save nykyrian/cc717e2336ed66d7232a3ce4431fea86 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void){
// Your code here!
printf(" /|\n");
printf(" / |\n");
printf(" / |\n");
printf(" ____|\n");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main() {
char characterName[] = "John";
int charaterAge = 35;
printf("There once was a man named John\n");
printf("he was 35 years old.\n");
printf("He really like the name John\n");
printf("but did not like being 35.\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment