What is the use of header files?
No Answer is Posted For this Question
Be the First to Post Answer
What is indirection?
What is realloc in c?
What is bin sh c?
Is using exit() the same as using return?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
How can I use a preprocessorif expression to ?
How can I call a function, given its name as a string?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
what is d pitfalls of registers variables
What is null pointer constant?
What does %d do in c?