For loop like this

PHOTO EMBED

Sat Apr 13 2024 06:55:10 GMT+0000 (Coordinated Universal Time)

Saved by @HTPrince

#include<stdio.h>
int main(){

int i = 0;
do {

printf("I'm genius like this times:%d\n",i);
i=i+1*800;
}while(i<10000);

return 0;
}
content_copyCOPY