What is the real difference between arrays and pointers?
Answer Posted / rag
ARRAYS are allocated at compile time.
POINTERS are alocated at run time.
USE POINTERS FOR PROGRAM EFFICIENCY,BECAUSE MEMORY IS
PRECIOUS ONE. So to reduce memory use pointers.
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All Answers
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is an endless loop?
How can a program be made to print the line number where an error occurs?
Ow can I insert or delete a line (or record) in the middle of a file?
explain how do you use macro?
What is a pointer value and address in c?
What is 2 d array in c?
What is the difference between scanf and fscanf?
What language is c written?
What do you mean by recursion in c?
State two uses of pointers in C?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
How many types of operator or there in c?
Explain what is meant by 'bit masking'?
Do you know pointer in c?