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 |
Do you know what are bitwise shift operators in c programming?
Explain what are the different data types in c?
how i m write c program 1.check prime number 2.prime number series
What is the difference between abs() and fabs() functions?
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
simple program of graphics and their output display
Can you add pointers together? Why would you?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
List the variables are used for writing doubly linked list program.
What is a program?
Why doesnt this code work?
write a program that print itself even if the source file is deleted?