Report Bug
Qus : We can use ___ to comment a single line?
QusWe can use ___ to comment a single line?

A. //
B. #
C. /* */
D. All of the above


Solution
D. All of the above



Explanation
/* */ can also be use to comment just a single line although it is used for paragraphs. // and # are used only for single line comment.



Report Bug