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

15 行
294 B

heynow() {
struct foo {int a; char b[2];} structure;
char **foo1 = (char *[]) { "x", "y", "z" };
structure = ((struct foo) {x + y, 'a', 0});
{
struct foo temp = {x + y, 'a', 0};
structure = temp;
}
output = ((int[]) { 2, x, 28 }) [input];
}