. Consider the following program
main()
{
int a[5]={1,3,6,7,0};
int *b;
b=&a[2];
}
The value of b[-1] is
(A) 1 (B) 3 (C) -6 (D) none
Answer Posted / megh singh rana
HERE address of location a[2] assined to b .now b stre this
data in o location as b[0],so b[-1] is the value immediate
before b[0]( 6) is 3,thats why answer of b[-1] is 3,
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Do pointers store the address of value or the actual value of a variable?
Tell us the use of fflush() function in c language?
Why do we use stdio h and conio h?
How do I use void main?
What is ponter?
What is register variable in c language?
How do I determine whether a character is numeric, alphabetic, and so on?
What are qualifiers?
What are the disadvantages of c language?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Are pointers integer?
What Is The Difference Between Null And Void Pointer?
What are bitwise shift operators in c programming?
What is c standard library?
What is a pointer value and address in c?