📅  最后修改于: 2020-10-23 00:59:19             🧑  作者: Mango
我们可以在不使用分号的情况下在C语言中print“ hello”或“ hello world”或其他任何内容。有多种方法可以这样做:
我们来看一个简单的c示例,该示例使用if语句而不使用分号来print“ hello world”。
#include
int main()
{
if(printf("hello world")){}
return 0;
}
输出:
hello world
让我们看一个简单的c示例,该示例使用switch语句而不使用分号来print“ hello world”。
#include
int main()
{
switch(printf("hello world")){}
return 0;
}
输出:
hello world
让我们看一个简单的c示例,它使用while循环而不使用分号来print“ hello world”。
#include
int main()
{
while(!printf("hello world")){}
return 0;
}
输出:
hello world