Compare commits

...

2 Commits

Author SHA1 Message Date
Yaroslav Orlianskyi
546ec33526 dd 2022-03-17 14:02:02 +01:00
Yaroslav Orlianskyi
245bfc0e40 problem 2022-03-17 14:01:28 +01:00
5 changed files with 16 additions and 0 deletions

BIN
du3/.program.c.swp Normal file

Binary file not shown.

BIN
du3/program Executable file

Binary file not shown.

8
du3/program.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;
}

BIN
du3/test Executable file

Binary file not shown.

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;
}