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 |
What are macros in C?
How can I convert integers to binary or hexadecimal?
Is fortran still used today?
What are the modifiers available in c programming language?
How can I call fortran?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
What is the return type of sizeof?
diff .between strcture and union
Can you write a programmer for FACTORIAL using recursion?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
How old is c programming language?
can a union be self-referenced?