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 / arpit dhandhania
Answer is d it is not possible to write nested comments in C
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How can a number be converted to a string?
How to explain the final year project as a fresher please answer with sample project
What is union and structure?
Can a pointer point to null?
What is difference between structure and union in c programming?
What are preprocessor directives in c?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Explain what is wrong with this program statement? Void = 10;
Why c language?
What are volatile variables in c?
What is property type c?
Do pointers take up memory?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Can a variable be both constant and volatile?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..