Computer Science, asked by kashiskummar4857, 11 months ago

A single line comment in c language source code can begin with _____

Answers

Answered by mhar6327
0

Answer:

A single line comment in c language source code can begin with //

Answered by pragyakirti12345
0

Answer : Double slash (//)

Concept : Comments in C

Given : A single line comment in c language source code can begin with

To Find : A single line comment in c language source code can begin

               with _____

Explanation :

Comments in any programming language is used to add or insert additional information regarding the program or topic discussed. Comments are considered as the important remark as they are useful to the programmer, and it will also help to those who will next see the program. By the use of comments, understanding a program becomes much easier. There are two types of comments in C - Single line comment and multi line comment.

  • Single line comment start with a double slash (//) , and it makes a single line as comment
  • Multi line comment starts with /* ...*/, inside this all the lines that are to be commented is written.

#SPJ3

Similar questions