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
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 |
It's not possible , address is an default we can't change
that value
Is This Answer Correct ? | 4 Yes | 3 No |
What is #define used for in c?
What are the advantages of using Unions?
how do you execute a c program in unix.
How to set file pointer to beginning c?
What is the explanation for cyclic nature of data types in c?
How can I write functions that take a variable number of arguments?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
How do you list files in a directory?
Explain how do you use a pointer to a function?
Where are c variables stored in memory?
Explain the difference between malloc() and calloc() function?
praagnovation