Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C 语句


语句

一个计算机程序是一系列由计算机“执行”的“指令”。

在编程语言中,这些编程指令被称为语句

以下语句“指示”编译器将文本“Hello World”打印到屏幕上

例子

printf("Hello World!");
自己试一试 »

重要的是,您需要以分号;结尾语句。

如果您忘记了分号;,将发生错误,程序将无法运行

例子

printf("Hello World!")
error: expected ';' before 'return'
自己试一试 »

多个语句

大多数 C 程序包含多个语句。

语句按顺序执行,顺序与它们编写的顺序相同

例子

printf("Hello World!");
printf("Have a good day!");
return 0;
自己试一试 »

解释示例

从上面的例子中,我们有三个语句

  1. printf("Hello World!");
  2. printf("Have a good day!");
  3. return 0;

第一个语句首先执行(将“Hello World!”打印到屏幕上)。
然后执行第二个语句(将“Have a good day!”打印到屏幕上)。
最后,执行第三个语句(成功结束 C 程序)。

在阅读本教程的过程中,您将更多地了解语句。现在,请记住始终以分号结尾以避免任何错误。

即将推出:下一章将教您如何控制输出以及如何插入换行符以使其更易读。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.