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 / fazlur rahaman naik
d is the answer.
| Is This Answer Correct ? | 32 Yes | 0 No |
Post New Answer View All Answers
What is the meaning of 2d in c?
Explain how do you override a defined macro?
Define macros.
Can include files be nested?
What are different types of operators?
Explain how can you check to see whether a symbol is defined?
Calculate 1*2*3*____*n using recursive function??
What is the purpose of scanf() and printf() functions?
What type is sizeof?
Why is it that not all header files are declared in every C program?
What is variable and explain rules to declare variable in c?
How do you define a function?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?