Created
July 5, 2015 13:57
-
-
Save cengiz-io/d26f999b32252d6c5bca to your computer and use it in GitHub Desktop.
Teen Song
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int num = 0; | |
#define JUMP printf("%d\n", ++num); | |
#define GO JUMP; JUMP | |
#define HIGHER GO; GO; GO; GO; GO | |
#define OH HIGHER; HIGHER | |
#define SING OH; OH; OH; OH; OH | |
int main() { | |
SING; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment