Answer Posted / glibwaresoftsolutions
A function prototype declares the function's name, return type, and parameters without providing the actual implementation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is c called a mid-level programming language?
What is the difference between volatile and const volatile?
What does %p mean c?
What are unions in c?
What is a #include preprocessor?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
why we wont use '&' sing in aceesing the string using scanf
What is the difference between null pointer and wild pointer?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Do you know the difference between exit() and _exit() function in c?
Tell me when is a void pointer used?
Are there constructors in c?
I need a sort of an approximate strcmp routine?
What are the difference between a free-standing and a hosted environment?