Created
July 27, 2018 03:08
-
-
Save Ophirr33/cd49ba629e8bfae238a5d01b5eb38dcf to your computer and use it in GitHub Desktop.
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> | |
#define In_the_Name_of_the_Moon struct | |
#define I_Will_Punish_You int | |
#define Tuxedo_Max char* | |
In_the_Name_of_the_Moon Foo { | |
I_Will_Punish_You X; | |
Tuxedo_Max Y; | |
}; | |
int main() { | |
In_the_Name_of_the_Moon Foo foo = { .X = 10, .Y = "Mammou" }; | |
printf("%s, say it once more\n", foo.Y); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment