C compiler with embedded metalanguage.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

17 行
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;