What is the difference between array and pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What does void main return?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is exit() function?
Is the following code legal? struct a { int x; struct a b; }
In how much time you will write this c program? Prime nos from 1 to 1000
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
What is the difference between c and python?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Write a program that accept anumber in words
How do I read the arrow keys? What about function keys?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }