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
What are pointers?
With the help of using classes, write a program to add two numbers.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What are local static variables?
What oops means?
What is the code in while loop that returns the output of given code?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What do you mean by invalid pointer arithmetic?
Explain #pragma statements.
Who developed c language and when?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What are the modifiers available in c programming language?
What is the purpose of 'register' keyword?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What are the complete rules for header file searching?