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
What is a spanning Tree?
Describe dynamic data structure in c programming language?
Is a pointer a kind of array?
code for quick sort?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Calculate 1*2*3*____*n using recursive function??
Was 2000 a leap year?
What is struct node in c?
Explain what is page thrashing?
Is swift based on c?
Do pointers store the address of value or the actual value of a variable?
What is malloc calloc and realloc in c?
What is function prototype?
Why C language is a procedural language?
What happens if you free a pointer twice?