#include <stdio.h> int main(int c, char **v) { int a = 0; int b = 0; ((c == 0) ? a : b) = 1; return 0; }
Standard input is empty
prog.c: In function ‘main’:
prog.c:7:21: error: lvalue required as left operand of assignment
((c == 0) ? a : b) = 1;
^
Standard output is empty