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 |
Write a program that his output 1 12 123
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
Explain what is the benefit of using an enum rather than a #define constant?
What is s in c?
Explain what is gets() function?
What does 4d mean in c?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
What are the characteristics of arrays in c?
write a program to print largest number of each row of a 2D array
What is the difference between malloc() and realloc()?
Does c have enums?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list