Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardJavaprimitives and char widthSingle-choice MCQ1 views

What value of i is printed after two post-increments?

int i = 5; int s = i++ + i++; System.out.println(i);