What is the output of the following program?
class tata
{
public static void main(String args[])
{
int harrier=7,avinya;
avinya= ++harrier + harrier++ + --harrier;
System.out.println(harrier + "," + avinya);
}
}

Posted on by