What is the real difference between arrays and pointers?
Answer Posted / shailesh
u can access arrays by index where pointers are help to pass references to the object
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the use of #pragma exit?
Place the #include statement must be written in the program?
Explain indirection?
how can f be used for both float and double arguments in printf? Are not they different types?
Can an array be an Ivalue?
What is the difference between c &c++?
Why can’t we compare structures?
Explain what math functions are available for integers? For floating point?
Explain 'bus error'?
Why is this loop always executing once?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
In C language what is a 'dangling pointer'?
What are volatile variables in c?
What is the newline escape sequence?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }