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
State two uses of pointers in C?
What is the use of structure padding in c?
Who is the founder of c language?
What is difference between class and structure?
What is the meaning of typedef struct in c?
Explain Function Pointer?
What does %p mean?
What is unsigned int in c?
Explain the difference between call by value and call by reference in c language?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Is javascript written in c?
write a progrmm in c language take user interface generate table using for loop?
What is a pointer and how it is initialized?
What is the difference between a string and an array?