What is true about the following C Functions
(a) Need not return any value
(b) Should always return an integer
(c) Should always return a float
(d) Should always return more than one value
Answer Posted / seema choudhary
(a) Need not return any value
b'caz all statements has using the return type
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is omp_num_threads?
What is difference between constant pointer and constant variable?
What is dynamic variable in c?
Write a program to check armstrong number in c?
How many keywords (reserve words) are in c?
Explain the priority queues?
What is null in c?
What are the keywords in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is scope rule of function in c?
Can we declare variable anywhere in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
How can I read a binary data file properly?
How can you tell whether a program was compiled using c versus c++?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?