CODE 1
void main()
{
int arr[]={11,12,13,14,15};
cout<<&&*arr; //this line gives Expression Syntax Error, WHY???????
}
CODE 2
void main()
{
int arr[]={11,12,13,14,15};
cout<<&(&*arr); //this line gives Lvalue Required Error, WHY???????
}
What i m thinking....may...