- 1
can we include two comments in two different lines without using /* and */....and by only using // in starting of two lines?
8 Respuestas
+ 1
Yes of course you can use
//something
//something other
instead of
/*something
something other*/
but i think the second way is better for longer comments
+ 1
yaa!!!
+ 1
absolutely!
+ 1
Absolutely
0
Yeah!
0
definitely yes...
// is single line comment (so use once per line)
/*.....*/ is multi line comment so to be use only use once for multiple line comments
0
ok I was using the /*.......*/ the wrong way then. thanks guys
0
Yes you can