程序打印不带分号的hello

本文概述

  • 程序1:使用if语句
  • 程序2:使用switch语句
  • 程序3:使用while循环
我们可以在C语言中打印“ hello”或“ hello world”或其他任何内容,而无需使用分号。有多种方法可以这样做:
  1. 使用if
  2. 使用开关
  3. 使用循环等
程序1:使用if语句【程序打印不带分号的hello】我们来看一个简单的c示例,该示例使用if语句而不使用分号来打印“ hello world”。
#include< stdio.h> int main() { if(printf("hello world")){} return 0; }

输出:
hello world

程序2:使用switch语句让我们看一个简单的c示例,该示例使用switch语句而不使用分号来打印“ hello world”。
#include< stdio.h> int main() { switch(printf("hello world")){} return 0; }

输出:
hello world

程序3:使用while循环让我们看一个简单的c示例,它使用while循环而不使用分号来打印“ hello world”。
#include< stdio.h> int main() { while(!printf("hello world")){} return 0; }

输出:
hello world

    推荐阅读