Part 08 If Statement
ravenleeblack opened this issue · 0 comments
ravenleeblack commented
I am having problems with the if statement printing out the lower number as shown in read me. I am using the ex. input given.
What I don't get is that in the main function, it calls compound statements. In compound, we have the option for T_INT which would call the variable declaration function. which is actually just initializing not declaring.
int i;
so there is no need for assignment at this point of course.
In the compound is the T_IDENT which calls the assignment function which we need for declaring but there is no relation to the actual T_INTLIT.
i = 6;
or am I missing something???