Skip to content

Instantly share code, notes, and snippets.

@songritk
Created July 23, 2019 15:03
Show Gist options
  • Save songritk/d786a76e31f0843b5b5255eb03d1e3c9 to your computer and use it in GitHub Desktop.
Save songritk/d786a76e31f0843b5b5255eb03d1e3c9 to your computer and use it in GitHub Desktop.
tutor-while-1
#include<stdio.h>
int main ()
{
int i=0;
while(i<5) {
printf("Hello\n");
i++;
}
return(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment