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