This commit is contained in:
2024-03-05 14:19:35 +03:00
parent b199446865
commit a4b587dc41
31 changed files with 0 additions and 0 deletions

15
w3school/for loop.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
int main() {
int i, j;
for (i = 1; i <= 2; ++i) {
printf("test: %d\n", i);
for (j = 1; j <= 3; ++j) {
printf("test2 : %d\n", j);
}
}
return 0;
}