fork(1) download
  1. #include <iostream>
  2. #include <vector>
  3. #include <string>
  4.  
  5. int main() {
  6. std::vector<std::string> v;
  7. std::cout << v.size() << "\n";
  8. }
  9.  
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
0