Statement C Tutorial

The sequence of the instruction is determined by the condition.
The statements in this category are if and switch.

# include
main(){
    int i=0, j =1;
   
    if (i > j){
        i = i + 1;
        printf("a");
    }
    else{
        printf("b");
        j = j +1;
    }
}
b