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;
}