fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. vector<string> first;
  10. string test;
  11.  
  12. cout << " Enter First Name? " ;
  13. cin >> test;
  14. first.push_back(test);
  15. cout << "entry added";
  16. return 0;
  17. }
Success #stdin #stdout 0s 4376KB
stdin
Standard input is empty
stdout
 Enter First Name? entry added