> 2.
>
> why?
>
>> for( int i = 0; i < 100; ++i ); <-- see that ';'
>
> the compiler interprets this code as:
>
> int x = 1;
> for (int i=0; i<100; i++)
> {
> }
> ++x;
>
> basic C :)
> nice try Aaron, unfortunately not correct :-p Still looking for the correct answer :-)) -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
