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

which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;

5 Answers   Assurgent, TCS,


What are the rules for identifiers in c?

0 Answers  


I have a varargs function which accepts a float parameter?

0 Answers  


Find occurence of a character in a sting.

3 Answers   TCS,


When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?

0 Answers  






What is dangling pointer in c?

0 Answers  


triangle number finding program...

1 Answers   HCL,


logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............

2 Answers   Infosys,


Who invented bcpl language?

0 Answers  


Why string is used in c?

0 Answers  


How to implement call back functions ?

3 Answers   HP,


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


Categories