fork(1) download
  1. #include <iostream>
  2.  
  3. int main(){
  4. int a=0;
  5. int b=100;
  6. int c=40000;
  7. while(a<2)
  8. {
  9. std::cout << a << "\t" << b << "\t" << c << std::endl;
  10. ++a;
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
0	100	40000
1	100	40000