C compiler with embedded metalanguage.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

20 wiersze
175 B

#define BAR 0
#ifdef BAR
#ifdef FOO
XXX
#ifdef FOO
XXX
#endif
#else
#define FOO
#ifdef FOO
int x = BAR;
#endif
#endif
#endif
int
main()
{
return BAR;
}