Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created January 2, 2021 22:31
Show Gist options
  • Save HashRaygoza/1b8f367140300e038eb03ac9048dc308 to your computer and use it in GitHub Desktop.
Save HashRaygoza/1b8f367140300e038eb03ac9048dc308 to your computer and use it in GitHub Desktop.
Emojis en C
#include <stdio.h>
#define πŸ‘ 0;
void 😸😸😸😸😸() {
printf("😸 Miau\n");
}
void 😲() {
printf("😲 Esto funciono!!! 😲\n");
}
void πŸ›₯() {
printf("<inserte tema de Miami Vice>\n");
}
void 😎😎😎😎😎(int πŸ–){
printf("DEAL WITH IT\n");
for(int πŸ§›=0; πŸ§› < πŸ–; πŸ§›++) {
for(int πŸ¦‡=0; πŸ¦‡ <= πŸ§›; πŸ¦‡++ ){
printf("😎");
}
printf("\n");
}
}
int main() {
😸😸😸😸😸();
😲();
πŸ›₯();
😎😎😎😎😎(10);
return πŸ‘;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment