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
What is page thrashing?
What is difference between Structure and Unions?
What is #error and use of it?
What oops means?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is variable declaration and definition in c?
What are the different file extensions involved when programming in C?
C program to find all possible outcomes of a dice?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Under what circumstances does a name clash occur?
Explain what is meant by high-order and low-order bytes?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is define c?
What is openmp in c?
int i=10; printf("%d %d %d", i, i=20, i);