compare array with pointer?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
In scanf h is used for
code for bubble sort?
what is the format specifier for printing a pointer value?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
what is array?
How to reverse a linked list
1 Answers Aricent, Fidelity, IBM, TCS,
How can I automatically locate a programs configuration files in the same directory as the executable?
What is pointer to pointer in c?
find the minimum of three values inputted by the user
How do we make a global variable accessible across files? Explain the extern keyword?