fork download
  1. #include <vector>
  2. #include <string>
  3.  
  4. int main() {
  5. std::vector<std::string> v_ports;
  6. v_ports.push_back("Com1");
  7. v_ports.push_back("Com4");
  8. return 0;
  9. }
Success #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
Standard output is empty