03 Comments in C Programming C编程中的注释

Comments 注释简介

Comments.png

Let's take a quick break from programming and talk about comments.
Comments help programmers understand what exactly the computer program does.
Comments are also a short summary of your computer program.
让我们从编程中快速休息一下,来谈谈注释。
注释帮助程序员了解计算机程序的确切功能。
注释也是您的计算机程序的简短摘要。

注释的分类.png

There are two types of comments in programming:

  • Single line comment
  • Multiline comment

It is as simple as it sounds. Single line comment is used to comment a single line and Multiline comment is used for multiple lines.
The computer ignore these lines while executing a program.

编程中有两种类型的注释:

  • 单行注释。
  • 多行注释。

这听起来很简单。单行注释用于注释单行,多行注释用于多行。计算机在执行程序时忽略这些行

Single Line Comment 单行注释

Single Line Comment
Let's see how to comment your command
It's very simple, to comment any command you just have to put '//" symbol at the very beginning of your command
Once you put'//'at the beginning, whatever command or text you write in that entire line will be ignored.
Example:
单行注释。
让我们看看如何注释您的命令行。
这非常简单,要注释任何命令,您只需在命令的开头加上‘//’符号。
一旦您在开头加上‘//’,您在整行中编写的任何命令文本都将被忽略。
示例:

int main(){
  // This line prints hi
  printf("Hi");
}
  • Here, the comment "This line prints hi" will be ignored by the computer and it will just print 'Hi' on the screen.
  • Comments are extremely useful for other people to understand your code.
  • It also helps you to remember what your code does!
  • Whenever you think commenting would help in clarifying your code, do it!
  • 在这里,“此行打印Hi”的注释将被计算机忽略,它只会在屏幕上打印“Hi”。
  • 注释对于其他人理解您的代码非常有用。
  • 它还可以帮助您记住代码的作用!
  • 每当您认为注释有助于澄清您的代码时,就去注释吧!

thingking.png

What if you want the computer to ignore multiple commands written in multiple lines, like 12 commands?
It will be annoying to put '//' on each and every line, isn't it?
如果希望计算机忽略多行编写的多个命令,比如12行命令,该怎么办?
在每一行都加“//”会很烦人,不是吗?

Multiline Comment 多行注释

So there is a better way to comment multiple commands.
It's done by using '/' at the beginning of your first command and using '/' at the end of your last command.
This is called multi line comment.
Whatever you write between '/' and '/' , be it a command or any text, will be ignored by the computer.
因此,有一种更好的方法来注释多个命令。
这可以通过在第一个命令的开头使用‘/’,在最后一个命令的末尾使用‘/’来完成。
这称为多行注释。
无论您在‘/’和‘/’之间写什么,无论是命令还是任何文本,都将被计算机忽略。

Example 示例:

printf (" A ");
// printf "B");
printf (" C ");
/* printf (" D ");
print f (" E ");
printf (" F ");
*/

Here, the printf command for 'B' and printf command for 'D' to 'F" will be ignored by the computer, and you will not see these command's texts in the
The program 's output.
在这里,计算机将忽略‘B’的printf命令和‘D’到‘F’的printf命令,并且您不会在程序的输出中看到这些命令的文本内容。

图片知识总结

1.png

2.png

3.png

4.png

posted @ 2020-07-24 00:22  皿哥的技术人生  阅读(241)  评论(0编辑  收藏  举报