Joe Shmoe
2010-08-23 10:10:11 UTC
char foo[][32] = {"one", "two", "three", "four"};
and I can access each element of the array like this:
foo[x]
How can I read a text file of unknown size and access each word like this?