Which of the following about the C comments is incorrect ?
a.commentscan go over multiple lines
b.comments can start any where in the line
c.a line can contain comments with out any language statements
d.comments can occur within comments
Answer Posted / mohmedali
b
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What are multidimensional arrays?
What is a function in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What are the advantages of c preprocessor?
How many keywords (reserve words) are in c?
simple program of graphics and their output display
How to write c functions that modify head pointer of a linked list?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is the method to save data in stack data structure type?
How many bytes are occupied by near, far and huge pointers (dos)?
What is the scope of an external variable in c?
How can you find out how much memory is available?
In a switch statement, what will happen if a break statement is omitted?
Explain what are the advantages and disadvantages of a heap?
What is echo in c programming?