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


Please Help Members By Posting Answers For Below Questions

State two uses of pointers in C?

817


What is the use of structure padding in c?

794


Who is the founder of c language?

882


What is difference between class and structure?

824


What is the meaning of typedef struct in c?

803


Explain Function Pointer?

884


What does %p mean?

821


What is unsigned int in c?

733


Explain the difference between call by value and call by reference in c language?

859


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

1665


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

848


Is javascript written in c?

787


write a progrmm in c language take user interface generate table using for loop?

1792


What is a pointer and how it is initialized?

812


What is the difference between a string and an array?

909