fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6. int a,b, c;
  7. a = 2;
  8. b = 5;
  9. c= a+b;
  10. cout<<c<<endl;
  11. system("PAUSE");
  12. return 0;
  13. }
Success #stdin #stdout #stderr 0.01s 5284KB
stdin
Standard input is empty
stdout
7
stderr
sh: 1: PAUSE: not found