MIPI_BaseC_WebinarFRTK/05_Lecture05/02_while_2_p11.c

14 lines
148 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main()
{
int n;
n=5;
while (n!=0)//n>0
{
printf("Hello %d\n",n);
n--;
}
return 0;
}