MENU

Chapter 7 Pointers Solutions

Question - 11 : -
Find the output of the following code :-

#include 
void main()
int *Queen;
Moves[]={ll,22,33,44};
Queen=Moves;
Moves[2]+=22;
cout<<"Queen@"<<*Queen<
*Queen-=ll;
Queen+=2;
cout<<”Now@"<<*Queen<
Queen++;
×