Answer Posted / pushpendra
array is faster than pointer because accessing array elements
by pointers always faster.there is used one array and more pointer.we know pointer is a "value at address".
so pointers stores only address of variable but arrays are stores similar data types.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is meant by initialization and how we initialize a variable?
Write a program to print "hello world" without using a semicolon?
Explain what is the difference between the expression '++a' and 'a++'?
How can I direct output to the printer?
How will you find a duplicate number in a array without negating the nos ?
I have seen function declarations that look like this
Can a local variable be volatile in c?
What is page thrashing?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is console in c language?
What is a program flowchart and explain how does it help in writing a program?
What is a const pointer?
How do I send escape sequences to control a terminal or other device?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none