When do you not use the keyword 'return' when defining a function
a) Always
b) Never
c) When the function returns void
d) dfd
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between fork() and vfork()?
In c language can we compile a program without main() function?
Explain what are linked list?
Explain how do you use a pointer to a function?
what is uses of .net
What should not contain a header file?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
How can I remove the trailing spaces from a string?
Which one would you prefer - a macro or a function?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
what is the difference between while and do while?