fork(1) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. { int i, j, k;
  7. float x, y, z;
  8.  
  9. i = 100; j = 2;
  10. k = i + j;
  11. x = 1.0; y = 0.02;
  12. z = x + y;
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty