This commit is contained in:
2025-05-23 03:26:13 +03:00
parent 191705c1dc
commit 4e9b002e99
14 changed files with 307 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <stdio.h>
int main (void) {
static int count = 1;
printf("%d\n", count++);
if (count <= 5) {
main();
}
return 0;
}