What is the real difference between arrays and pointers?
Answer Posted / shubham arora
1-through pointers we can access data directly while in array we have to traverse the whole array for accessing particular data.
2- due to above reason accessing through pointers is fast than
array.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
write a program to find out prime number using sieve case?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Can you think of a logic behind the game minesweeper.
What are the advantages of using macro in c language?
What is a example of a variable?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is string function c?
Why is c not oop?
What is non linear data structure in c?
Explain what is output redirection?
What does typedef struct mean?
What is output redirection?
How can you determine the size of an allocated portion of memory?
What is function what are the types of function?
how to find anagram without using string functions using only loops in c programming