📜  C中实现print不带分号的Hello

📅  最后修改于: 2020-10-23 00:59:19             🧑  作者: Mango

C程序print不带分号的“ hello”

我们可以在不使用分号的情况下在C语言中print“ hello”或“ hello world”或其他任何内容。有多种方法可以这样做:

  • 使用if
  • 使用switch
  • 使用循环等

程序1:使用if语句

我们来看一个简单的c示例,该示例使用if语句而不使用分号来print“ hello world”。

#include
 int main()  
{  
 if(printf("hello world")){}  
return 0;
} 

输出:

hello world

程序2:使用switch语句

让我们看一个简单的c示例,该示例使用switch语句而不使用分号来print“ hello world”。

#include
 int main()  
{  
switch(printf("hello world")){}  
return 0;
} 

输出:

hello world

程序3:使用while循环

让我们看一个简单的c示例,它使用while循环而不使用分号来print“ hello world”。

#include
 int main()  
{  
   while(!printf("hello world")){}  
return 0;
} 

输出:

hello world