int main() { int i = 10; int j = 10; if(i = 5) { j = 100; } else { j = 200; } return 0; }
Standard input is empty
cc1: warnings being treated as errors prog.c: In function ‘main’: prog.c:5: error: suggest parentheses around assignment used as truth value
Standard output is empty