Asked by Gbeho Rodrigue on Jun 02, 2024

verifed

Verified

In C, comments may be nested.

Nested Comments

Comments placed within other comments in a program's source code, often not allowed in many programming languages due to parsing complexities.

  • Understand the rules and limitations regarding comments in C programming.
verifed

Verified Answer

ZK
Zybrea KnightJun 07, 2024
Final Answer :
False
Explanation :
In C, comments cannot be nested. Using the traditional /* */ comment syntax, the compiler interprets the first */ it encounters as the end of the comment, which can lead to errors if comments are nested.