C compiler with embedded metalanguage.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

17 righe
138 B

typedef struct x_ x;
struct x_{
int y;
int z;
};
x b;
struct x_ a = {};
x c = {};
typedef struct xyz_ {
int a;
int b;;
char c;
} xyz;