![]() |
Comments
Question: Why doesn't anyone use single-line comments?
the /* */ doesn't nest. Like: Code:
//This is a one line Comment.Isn't it good coding practice to do this anyway? Plus, It isn't in the default code, Anywhere. |
Re: Comments
The way I've always understood it was that /* */'s were the only way to use comments in C. When C++ came along, it added the // style comments. Therefore: //'s aren't a part of standard C, only C++.
That probably explains why a lot of people don't use them: they don't expect them to work! However, you are correct in saying that the Microchip compiler does seem to allow them. So // away! |
Re: Comments
Quote:
|
Re: Comments
It would seem like Whoever wrote the default code would know about //. :shrug:
I actually got the idea from NQC, a C-like language for LEGO's RCX :] |
Re: Comments
my standard practice is to make comments that actually say something single-liners "//", and use "/* */" for commenting out blocks - that way there is no conflict.
|
| All times are GMT -5. The time now is 00:33. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi