+91-85006-22255
What will be the output of the following program?
public class DemoOnOperators { public static void main(String[] args) { int input = 7; int output = ++input + ++input + ++input; System.out.println(output); }}
Topic: Increment And Decrement Operators In Java
Read this topic Take test on this topic
Open In App