What is the real difference between arrays and pointers?
Answer Posted / nagendra kumar
pointer is dependent variable
array is not a dependent variable
array is a constant pointer type it is sequence of variables
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are header files in c?
What is New modifiers?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is typeof in c?
Explain how do you view the path?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How variables are declared in c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is return type in c?
What is a substring in c?
What is volatile variable in c?
How can I find the modification date and time of a file?
What is indirection?
Write a program to swap two numbers without using third variable?