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 is a structure in c language. how to initialise a structure in c?
There seem to be a few missing operators ..
hi send me sample aptitude papers of cts?
What's the right way to use errno?
Is there a way to compare two structure variables?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Who is the main contributor in designing the c language after dennis ritchie?
Explain can static variables be declared in a header file?
Explain the term printf() and scanf() used in c language?
What is a pointer in c plus plus?
Explain void pointer?
What is a null pointer in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What does int main () mean?
Can a variable be both static and volatile in c?