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

11 行
202 B

heynow() {
long long int x = 10LL;
unsigned long long int y = 9ULL;
__complex__ float c, d, e;
float f;
c = 10.0 + 3.0fi;
d = ~ c;
f = __real__ c;
f = __imag__ d;
}