Answer Posted / vadivel t
conceptually, pointer is another representation of an array.
In both the concepts data elements can be accessed using
subscripts.
Array knows the boundary of it. But pointer will not know
its boundary, unless otherwise informed explicitly.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
hi send me sample aptitude papers of cts?
program for reversing a selected line word by word when multiple lines are given without using strrev
What are the disadvantages of a shell structure?
Did c have any year 2000 problems?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What are the different types of objects used in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Differentiate between ordinary variable and pointer in c.
Are the variables argc and argv are always local to main?
What are logical errors and how does it differ from syntax errors?
In c programming language, how many parameters can be passed to a function ?
Can we declare a function inside a function in c?
shorting algorithmS
What are two dimensional arrays alternatively called as?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }