Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardC++sequencing and evaluation orderSingle-choice MCQ

For the chained assignment `a = b = c = 0;` on plain `int`s, what does the standard guarantee about sequencing, given that assignment is right-associative?

int a, b, c; a = b = c = 0;