1
int x=1,y=1;
if(n>0) 
{
    x=x+1; 
    y=y+1;
}
 x=x-1;
 y=y-1;

What will be the value of x and y, if n assumes a value 0?

  • x=2,y=2

  • x=1,y=1

  • x=1 , y=2

  • x=, y=0