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

17 行
210 B

#if 0 != (0 && (0/0))
#error 0 != (0 && (0/0))
#endif
#if 1 != (-1 || (0/0))
#error 1 != (-1 || (0/0))
#endif
#if 3 != (-1 ? 3 : (0/0))
#error 3 != (-1 ? 3 : (0/0))
#endif
int
main()
{
return 0;
}