MIPI_BaseC_WebinarFRTK/03_Lecture03/00_example_p4.c

11 lines
130 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main()
{
int i, sum=0;
for (i=1; i<10; i++)
sum*=i;
printf("%d",sum);
return 0;
}