for loop

PHOTO EMBED

Tue Jun 07 2022 20:13:19 GMT+0000 (Coordinated Universal Time)

Saved by @KanishqJ8

int main(){
    int i,j;
    
    for(i=0,j=0;i<5,j<3;i++,j++){
        printf("%d %d \n",i,j);
    }
    return 0;
}
content_copyCOPY