Skip to content

Instantly share code, notes, and snippets.

@cengiz-io
Created July 5, 2015 13:57
Show Gist options
  • Save cengiz-io/d26f999b32252d6c5bca to your computer and use it in GitHub Desktop.
Save cengiz-io/d26f999b32252d6c5bca to your computer and use it in GitHub Desktop.
Teen Song
#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