For some reason, I'm getting an error at this line:
while ((en = strtok(NULL, " " ) !=NULL)){ //do something }
and at this line (the error for this one is 'comparison between pointer and integer ('int' and 'void *'), even though inputString is a char array and null is null.
while (!inputString[i]==NULL)
en is a char, and was declared as char *en. I'm not sure why...is it because I can't compare them with NULL?