Skip to content

Instantly share code, notes, and snippets.

@Geertex
Created December 23, 2014 21:22
Show Gist options
  • Save Geertex/d16c0d92d72f1678aa2c to your computer and use it in GitHub Desktop.
Save Geertex/d16c0d92d72f1678aa2c to your computer and use it in GitHub Desktop.
int i = 0;
string words[3000];
ifstream input("wordlist1.txt");
while(! input.eof()) {
input.getline(words[i], 20);
i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment