#include <stdio.h> int main(void) { int b = 1; int res = b++ * b++ * b++; return 0; }
Standard input is empty
prog.c: In function ‘main’:
prog.c:5:28: error: operation on ‘b’ may be undefined [-Werror=sequence-point]
int res = b++ * b++ * b++;
~^~
prog.c:5:28: error: operation on ‘b’ may be undefined [-Werror=sequence-point]
cc1: all warnings being treated as errors
Standard output is empty