Created
April 9, 2026 07:42
-
-
Save pkutaj/e9ad7767f1529c8def461b034a47c522 to your computer and use it in GitHub Desktop.
CTJ42_Union snippet
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
| typedef union AgeOrName { | |
| int age; | |
| const char *name; | |
| } age_or_name_t; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment