07-26-2023, 07:27 AM
Example:
/*
This is the outer comment.
/* This is a nested comment. */
It is ignored as well.
*/
Explanation:
C allows nesting of multi-line comments.
In this example, an inner multi-line comment /* This is a nested comment. */ is placed within the outer comment.
The compiler ignores both the outer and inner comments.
/*
This is the outer comment.
/* This is a nested comment. */
It is ignored as well.
*/
Explanation:
C allows nesting of multi-line comments.
In this example, an inner multi-line comment /* This is a nested comment. */ is placed within the outer comment.
The compiler ignores both the outer and inner comments.