Explore how output changes when you change the initialization statement, condition statement, increment statment in this while loop.
int i = ;
while( i < ) {
printf("%i ", i);
i = i + ;
}
Output: