View Single Post
Old 10-15-2013, 03:00 PM   #8
dAnceguy117
new hand moves = dab
FFR Simfile AuthorFFR Veteran
 
dAnceguy117's Avatar
 
Join Date: Dec 2002
Location: he/they
Age: 33
Posts: 10,094
Default Re: Requesting help for programming/ CS majors?

on a simple level, characters are basically your letters, yes. the problem is there in your actual definition of the for loop, not in the code inside the loop. once you've already hit

Code:
char i;
it's invalid to then have

Code:
i=0;
because 0 is an int value, not a char value.
dAnceguy117 is offline   Reply With Quote