fork download
  1. #include <string>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main() {
  6. char *nomes[100] = { "gabriel" , "vanessa" };
  7. string aNomes[] = { "gabriel" , "vanessa" };
  8. vector<string> vNomes = { "gabriel" , "vanessa" };
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/443761/101
Success #stdin #stdout 0s 4484KB
stdin
Standard input is empty
stdout
Standard output is empty