Skip to content

Instantly share code, notes, and snippets.

@songritk
Created July 23, 2019 15:08
Show Gist options
  • Select an option

  • Save songritk/60b2efc74e64dc03ffba58b393334270 to your computer and use it in GitHub Desktop.

Select an option

Save songritk/60b2efc74e64dc03ffba58b393334270 to your computer and use it in GitHub Desktop.
ตัวอย่าง do while
#include<stdio.h>
int main ()
{
int i=0;
do {
printf("Hello\n");
i++;
}while(i<5);
return(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment