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
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Can we increase size of array in c?
What is the use of the function in c?
How can I insert or delete a line (or record) in the middle of a file?
What is the use of a static variable in c?
Explain what is the concatenation operator?
What are header files in c?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Why does notstrcat(string, "!");Work?
What is a pointer value and address in c?
Can we access array using pointer in c language?
Can we assign string to char pointer?
What are the similarities between c and c++?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What is logical error?