Saturday, August 29, 2020

Repeat 50 times: while ( i < 50 ) { }

int i=0;

while (i<50)
{

printf("hello,world\n");

i++;

}


No comments:

Post a Comment