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

Posted on by