Monday, August 8, 2011

Chapter 2, question 7

7.  Can comments be nested?

No.

/* This is a nested comment >> /* This comment is nested. */ */

My compiler can deal with nested functions as an extension, but they are not supposed to be used according to the standard.

I could also nest comments by mixing the C89 type and C99 type, like this:

/*    This is a comment and // This is a nested comment.
*/

or

//  This is a comment and /* This is a nested comment. */

No comments:

Post a Comment