What is the difference between array and pointer?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What does void main return?

0 Answers  


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

0 Answers  


What is exit() function?

0 Answers  


Is the following code legal? struct a { int x; struct a b; }

4 Answers  


In how much time you will write this c program? Prime nos from 1 to 1000

2 Answers   TCS,






the format specified for hexa decimal is a.%d b.%o c.%x d.%u

7 Answers   TCS,


What is the difference between c and python?

0 Answers  


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..???

2 Answers   TCS,


code snippet for creating a pyramids triangle ex 1 2 2 3 3 3

4 Answers  


Write a program that accept anumber in words

0 Answers  


How do I read the arrow keys? What about function keys?

0 Answers  


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 Answers   CitiGroup,


Categories