(no title)
ramshorns | 5 years ago
#if FOO
foo();
#elif BAR
bar();
#endif
#if FOO
foo();
#else
#if BAR
bar();
#endif
#endif
I guess it works but it's clunkier.ramshorns | 5 years ago
#if FOO
foo();
#elif BAR
bar();
#endif
#if FOO
foo();
#else
#if BAR
bar();
#endif
#endif
I guess it works but it's clunkier.
jomar|5 years ago
C itself doesn't need this, because you can write `else if …` without needing to put another layer of braces around the subordinate `if` statement.
xt00|5 years ago