What is the real difference between arrays and pointers?
Answer Posted / sankar s
array refer data in memory location , pointer refer address
to the memory location ,pointer refer the pointee
int *a;
int b[10];
a=&b;
where a is the pointer array b is pointee which point out
the starting memory location of an array.
Is This Answer Correct ? | 24 Yes | 13 No |
Post New Answer View All Answers
Is boolean a datatype in c?
What is the difference between procedural and functional programming?
What is a spanning Tree?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Write a program to swap two numbers without using a temporary variable?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What is #include stdlib h?
What is call by value in c?
Tell me with an example the self-referential structure?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Is there anything like an ifdef for typedefs?
What are valid signatures for the Main function?
what type of questions arrive in interview over c programming?
How can I direct output to the printer?
`write a program to display the recomended action depends on a color of trafic light using nested if statments