#include <vector>
#include <iostream>
int main ()
{
struct token
{
char ch[10];
};
std::vector<token> tokens;
token empty;
// There has to be a neater way of doing this!
for (int i = 0; i < 9 ; i = i + 1)
empty.ch[i] = "123456789"[i];
empty.ch[9] = 0;
// Add three tokens to the vector
tokens.push_back(empty);
tokens.push_back(empty);
tokens.push_back(empty);
// Make each token unique
tokens[0].ch[1] = '*';
tokens[1].ch[4] = '*';
tokens[2].ch[7] = '*';
// Output the tokens
std::cout << tokens[0].ch << "\n";
std::cout << tokens[1].ch << "\n";
std::cout << tokens[2].ch << "\n";
std::cout << "Press enter to end:";
std::cin.get();
return 0;
}