fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include<iostream>
  9. #include<string>
  10. #include<fstream>
  11. using namespace std;
  12. int main()
  13. {
  14. ifstream numberFile("number.txt");
  15. string s;
  16. int a;
  17. //EOF-CTRL+D
  18. while(numberFile>>s>>a){
  19. cout<<s<<a<<endl;
  20. }
  21. return 0;
  22. }
  23.  
  24.  
  25.  
Success #stdin #stdout 0.01s 5288KB
stdin
45
stdout
Standard output is empty