fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a = 10, b = 20;
  7. a, b = 30;
  8. printf("a = %d ", a);
  9. printf("b = %d ", b);
  10. return 0;
  11. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
a = 10 b = 30