Answer Posted / sandeep
when compared pointers work fast ,beacause:
1.array too is pointer
eg:char s[20];
gets(s);
here we are supplying base address.
2.array notation will be inter coverted as pointers
where we can directly use pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What does & mean in scanf?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Is null a keyword in c?
What is nested structure with example?
Which header file is used for clrscr?
Why c language is called c?
What is #line used for?
What is the difference between typedef and #define?
What is array in c with example?
simple program of graphics and their output display
Write a program of prime number using recursion.
What are the different types of control structures in programming?
Describe explain how arrays can be passed to a user defined function
When should we use pointers in a c program?