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
What does do in c?
What is getch?
How can type-insensitive macros be created?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is the difference between Printf(..) and sprint(...) ?
Is that possible to store 32768 in an int data type variable?
How can I write a function that takes a format string and a variable number of arguments?
i want to know the procedure of qualcomm for getting a job through offcampus
What is selection sort in c?
what is recursion in C
Is a pointer a kind of array?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What is extern storage class in c?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler