reading function-like macros

This commit is contained in:
pommicket 2022-01-08 18:13:48 -05:00
parent 3d0adb5f6f
commit 4d5a5d9d97
4 changed files with 162 additions and 16 deletions

View file

@ -6,7 +6,11 @@ comment it is
here
*/
#
#define A 33
#define A(_Hello, there, everyone ) 33 + _Hello - everyone * there
#define B(x, y, z) 58
#define C(hello) hello * hello + hello / hello
#define A 22
#define C 33
#define _Hello_there5 -76 + sqrt(A)
int main(void) {
printf("\"Hello, world!%c\n\"", '\'');
@ -15,3 +19,4 @@ int main(void) {
5 + (.3e+5+6) & 0xff | 93 -~5;
return 0;
}
#define _Hello_there 18