易百教程

请写一个不使用分号的程序来打印 "hello world"?

参考下面示例代码:

#include<stdio.h>      
void main(){      
 if(printf("hello world")){} // It prints the ?hello world? on the screen.  
}