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 / ningappa
a.Need not return any value
| Is This Answer Correct ? | 56 Yes | 2 No |
Post New Answer View All Answers
What are header files and what are its uses in C programming?
Is there anything like an ifdef for typedefs?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
How do I get a null pointer in my programs?
Explain logical errors? Compare with syntax errors.
What is the difference between null pointer and wild pointer?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the code for 3 questions and answer check in VisualBasic.Net?
What is the best organizational structure?
how to count no of words,characters,lines in a paragraph.
Why isnt there a numbered, multi-level break statement to break out
Why c is procedure oriented?
Why does everyone say not to use scanf? What should I use instead?
diff between exptected result and requirement?
What are linked lists in c?