本文介绍了打印“hello,wolrd”不使用分号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



任何人都可以告诉我如何打印hello,world不使用分号


提前致谢..

再见

Prashanth Badabagni

Hi,
Can any body tell me how to print "hello,world" with out using semicolon

Thanks in advance ..
Bye
Prashanth Badabagni

推荐答案




" hello,world"不包含分号。



"hello,world" doesn''t contain a semicolon.





是的。现在请别人帮助您在groups.google.com上搜索档案。



Yes. Now ask someone to help you search the archives at groups.google.com.





#include< stdio.h> ;


void main()

{

if(printf(" hello world \ n)")

}



#include<stdio.h>

void main()
{
if(printf("hello world\n"))
}


这篇关于打印“hello,wolrd”不使用分号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:10