MIPI_BaseC_WebinarFRTK/05_Lecture05/09_comtinue_p31.c

13 lines
172 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main(int argc, char **argv)
{
int i;
for(i=1; i<5; i++)
{
if (i==3)
continue;
printf("i = %d\n",i);
}
}