Q. What is the output of this program?
Code:
public class Result
{
public static void main(String args[])
{ int q,r;
int p=q=r=26;
System.out.print(+p);
}
}
β
Correct Answer: (B)
26