Q. What is the output of this program?
Code:
public class operators
{
public static void main(String args[])
{
int p = 10;
System.out.println(++p * 5 + " " + p);
}
}
β
Correct Answer: (C)
55 11