This commit is contained in:
Yaroslav Orlianskyi 2022-03-17 14:01:28 +01:00
parent a2ac0f1481
commit 245bfc0e40

8
du3/test.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main(){
for(int i = 0; i < 10; i++){
printf("%d\n", i);
}
return 0;
}