An array name contains base address of the array. Can we
change the base address of the array?

Answers were Sorted based on User's Feedback



An array name contains base address of the array. Can we change the base address of the array?..

Answer / raja

No We cant change the base address of the array

Is This Answer Correct ?    19 Yes 1 No

An array name contains base address of the array. Can we change the base address of the array?..

Answer / sri

no , we cant change the base address.

Is This Answer Correct ?    7 Yes 0 No

An array name contains base address of the array. Can we change the base address of the array?..

Answer / 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

An array name contains base address of the array. Can we change the base address of the array?..

Answer / palani222samy

It's not possible , address is an default we can't change
that value

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More C Interview Questions

What are the 5 types of inheritance in c ++?

0 Answers  


why we shiuld use main keyword in C

5 Answers  


what is the associativity of bitwise OR operator?

1 Answers  


what is difference between ANSI structure and C99 Structure?

1 Answers   Wipro,


What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?

1 Answers  






how to compare two strings without using strcmp() function??

1 Answers  


How do I convert a string to all upper or lower case?

0 Answers  


why programming language C is still used in operating system's kernel??

1 Answers   Wipro,


write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????

7 Answers   Infosys, TCS,


What are the types of arrays in c?

0 Answers  


Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));

6 Answers   TCS,


code for bubble sort?

1 Answers  


Categories