An array name contains base address of the array. Can we
change the base address of the array?
Answer Posted / sandeep rehlan
Not, we cann'e base change the base address of the array
because base address is a constant value.
like
int const i=5;
i++;
in this case i cann't be incremented. So, the base address
cann't be incremented.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
C language questions for civil engineering
What is pragma c?
What is assert and when would I use it?
How are pointers declared in c?
Why is c called "mother" language?
What is a ternary operator in c?
Is c is a high level language?
What is far pointer in c?
What is the use of typedef in structure in c?
Why do we use namespace feature?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is atoi and atof in c?
What is the size of enum in bytes?