Operators in java Assignment Operators
⚠ Report ✓ Question Verified Copy Link
class PostAndPre { public static void main( String args[]) { int a = 2; int b = a++ - a++; System.out.println(b); System.out.println(a); } }
Learn More MCQ Questions from Operators in java Assignment Operators