public class HelloPrinter
{
public static void main(String[] args)
{
int c = 23;
c /= 2;
System.out.printf("The 1st c = %d\n", c );
System.out.printf("The 2nd c = %d\n", c-1);
System.out.printf("The 3rd c = %d\n", c%3);
System.out.printf("The 4th c = %d\n", c++);
System.out.printf("The 5th c = %d\n", ++c);
System.out.printf("The 6th c = %d\n", c+4);
c++;
System.out.printf("The 7th c = %d\n", c);
--c;
System.out.printf("The 8th c = %d\n",c++);
System.out.printf("The 9th c = %d\n", c%5);
}
}
What will be output of the above program?
