What is difference between static and global variable in c?
what are two categories of clint-server application development ?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
Can you pass an entire structure to functions?
how to find out the union of two character arrays?
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
Can two or more operators such as and be combined in a single line of program code?
How can I open files mentioned on the command line, and parse option flags?
Code for calculating square root without using library function, of math.h
Explain what is the most efficient way to store flag values?
What is graph in c?
Calculate 1*2*3*____*n using recursive function??