What is function prototype in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
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;
What are the rules for identifiers in c?
I have a varargs function which accepts a float parameter?
Find occurence of a character in a sting.
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is dangling pointer in c?
triangle number finding program...
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............
Who invented bcpl language?
Why string is used in c?
How to implement call back functions ?
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