What is function prototype in c with example?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how to find turn around time in operating system?

3 Answers  


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?

7 Answers   AMCAT, HCL, Ramco, Zycus Infotech,


How can I get back to the interactive keyboard if stdin is redirected?

0 Answers  


Why calloc is better than malloc?

0 Answers  


Why is c fast?

0 Answers  






How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  


Explain the Difference between the New and Malloc keyword.

0 Answers   InterGraph,


What is the use of extern in c?

0 Answers  


What is variable initialization and why is it important?

0 Answers  


write a program in C to swap two variables

7 Answers   Attrabyte, Marlabs,


c pgm count no of lines , blanks, tabs in a para(File concept)

2 Answers  


How a string is stored in c?

0 Answers  


Categories