Section
Question # 24
Which of the following sections of the C program is not visible to the compiler?
a. comments
b. functions
c. directives
d. declarations
Answers
Answered by
8
Answer:
Q. Which of the following sections of the C program is not visible to the compiler?
Ans. comments
Explanation:
comments
Answered by
2
Comments of a program are not visible to the compiler in the C program.
- Comments are added in the source code to make it easier for humans to understand the program.
- Comments help us to understand the steps in a program, when the program is written by someone else.
- The “slash-star”(\*) comment mark tells the compiler to ignore everything that follows until it finds a “star-slash” (*/) mark. Everything between these two marks is ignored by the compiler.
Similar questions