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
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is actual argument?
Can a program have two main functions?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is pointer to pointer in c?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is the explanation for cyclic nature of data types in c?
What are the 4 types of programming language?
Tell us the use of fflush() function in c language?
What is the use of in c?
write a c program for swapping two strings using pointer
how many errors in c explain deply
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }