C compiler with embedded metalanguage.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

7 satır
230 B

main() {
int a;
typedef b = (a); // typedef ‘b’ is initialized (use __typeof__ instead)
typeof (int *) c;
typeof (d[0](1)) e; // ‘d’ undeclared (first use in this function)
c = &a;
}