fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a = 0, b = 1, c = 2, d = 3;
  6. a = b + c = 3;
  7. cout << a;
  8. return 0;
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:6:14: error: lvalue required as left operand of assignment
  a = b + c = 3;
              ^
stdout
Standard output is empty