Skip to content

Instantly share code, notes, and snippets.

@Ophirr33
Created July 27, 2018 03:08
Show Gist options
  • Save Ophirr33/cd49ba629e8bfae238a5d01b5eb38dcf to your computer and use it in GitHub Desktop.
Save Ophirr33/cd49ba629e8bfae238a5d01b5eb38dcf to your computer and use it in GitHub Desktop.
#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