本文介绍了不使用分号打印的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在不使用任何分号的情况下用c编写Helloworld程序
How can write a Helloworld program in c without using any semicoln
推荐答案
#include<stdio.h>
main()
{
if(Printf("Hello World!!!"))
}
#include<stdio.h>
main()
{
if(printf("Hello World \n"))
{
}
}
在这两个程序中,我都没有使用分号.希望我符合您的条件
Here in Both Programs,I didn''t use semicolon. I hope I met your criteria
这篇关于不使用分号打印的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!