Created
March 15, 2016 21:24
-
-
Save aleclaws/d67e44ca24d56dc08c0e to your computer and use it in GitHub Desktop.
This file contains 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> | |
#include <stdlib.h> | |
struct _keywords { | |
const char *FIRST; | |
const char *SECOND; | |
}; | |
struct _keywords Keywords = { | |
.FIRST = "AAA", | |
.SECOND = "BBB" | |
}; | |
int main(void) { | |
printf("first: %s\n", Keywords.FIRST); | |
printf("second: %s\n", Keywords.SECOND); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment