#include <string>
#include <vector>
using namespace std;

int main() {
    char *nomes[100] = { "gabriel" , "vanessa" };
    string aNomes[] = { "gabriel" , "vanessa" };
    vector<string> vNomes = { "gabriel" , "vanessa" };
}

//https://pt.stackoverflow.com/q/443761/101