why do we use pointer instead directly acessing the data?
Answer Posted / jitendra mishra
As we know pointer shows the address of a particular variable in the memory space.and accessing variable by its name is a bit time consuming because there can have more than one variable of same name but there can not be same address for two different variables.So pointer is more accurate and quick.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you determine the length of a string value that was stored in a variable?
What are the differences between new and malloc in C?
Explain the difference between exit() and _exit() function?
Differentiate between full, complete & perfect binary trees.
How do you determine whether to use a stream function or a low-level function?
What is the ANSI C Standard?
How can I find the modification date of a file?
Why do we need arrays in c?
What are the 4 types of unions?
How do you write a program which produces its own source code as output?
Is null a keyword in c?
Is c dynamically typed?
Who is the founder of c language?
Is it fine to write void main () or main () in c?
Explain what does the format %10.2 mean when included in a printf statement?