最适合网络开发者的网站
C 语言。W3Schools 英文版。初学者课程

尿素 西斯

C Output (Print Text)


Output (Print Text)

The printf() function is used to output values/print text:

例子

#包括<stdio.h>

int 主要() {
  printf("Hello World!");
返回0;
}
亲自尝试 »

You can add as many printf() functions as you want. However, note that it does not insert a new line at the end of the output:

例子

#包括<stdio.h>

int 主要() {
  printf("Hello World!");
printf("我正在学习 C。");
返回0;
}
亲自尝试 »