|
|
|
|
|
by kazinator
1933 days ago
|
|
Goto labels: {
int x;
x:
goto x;
}
Macros are all in one namespace, but a function-like macro won't replace an identifier not followed by an opening paren: #define mac(x)
mac("abc") /* disappears */
int mac; /* unaffected */
|
|