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 does the error 'Null Pointer Assignment' mean and what causes this error?
Difference between exit() and _exit() function?
Why should I use standard library functions instead of writing my own?
How many types of operators are there in c?
How do you declare a variable that will hold string values?
Why do we use stdio h and conio h?
Why does this code crash?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
I heard that you have to include stdio.h before calling printf. Why?
How many identifiers are there in c?
What is the general form of a C program?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What are the salient features of c languages?
What is meant by recursion?