Answer Posted / sukh
"void" returns no value
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is the 'named constructor idiom'?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Write a program to print fibonacci series using recursion?
If fflush wont work, what can I use to flush input?
Is c still used?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the explanation for prototype function in c?
What is difference between structure and union with example?
Write a program to find the biggest number of three numbers in c?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
How can I discover how many arguments a function was actually called with?
What does the && operator do in a program code?
Explain what does it mean when a pointer is used in an if statement?
Why are all header files not declared in every c program?
What is array of structure in c programming?