wat is the difference between array and pointer?
Answers were Sorted based on User's Feedback
Answer / unni
array is a fixed sequence collection of elements of the same datatype:
pointer contains memory address as their values...
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / shraddha choubey
1)array do not contains address.. but pointers contains address .
2)array means continues memory location but,pointers do not.
| Is This Answer Correct ? | 10 Yes | 4 No |
Answer / sanjay gupta
array is the similsr type of data and pointer is a momery location of element...
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / lucky
In a arry we have to specify length before we use.
But in the case of poiters we don't need.
| Is This Answer Correct ? | 0 Yes | 1 No |
Determine if a number is a power of 2 at O(1).
How can I do serial ("comm") port I/O?
how to find the sizof of any datatype using bit manipulations
how to find anagram without using string functions using only loops in c programming
How important is structure in life?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
Write a program to check palindrome number in c programming?
program to convert a integer to string in c language'
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
what is the difference between %d and %*d in c languaga?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
how to use enum datatype?Please explain me?