home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!wupost!csus.edu!netcom.com!netcomsv!boo!uttsbbs!john.navas
- From: john.navas@uttsbbs.uucp (John Navas)
- Newsgroups: comp.os.os2.programmer
- Subject: Nested Comments in IBM C
- Message-ID: <2681.18.uupcb@uttsbbs.uucp>
- Date: 16 Nov 92 10:03:00 GMT
- Distribution: world
- Organization: The Transfer Station BBS, Danville, CA - 510-837-4610/837-5591
- Reply-To: john.navas@uttsbbs.uucp (John Navas)
- Lines: 23
-
- c9e-aw@volga (Claudio Fahey) writes:
-
- > Does anybody know if the IBM C Set/2 compiler can be setup to
- > support nested comments? It sure is a pain uncommenting my
- > comments when I want to comment a large section of code.
-
- Rather than nested comments, why not simply use:
-
- ...
-
- #if 0
-
- ... /* comment */
-
- #endif
-
- ...
-
- to "comment out" code?
-
- Best regards,
- John
-
-