This commit is contained in:
2025-02-06 01:55:44 +03:00
parent 0b7e3b6cb0
commit 08ec3be7a9
7 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <stdio.h>
int main(void) {
int start = 10;
for(int i = 1; i <= start; i++) {
for(int j = 0; j <= i; j++){
printf("%s", "*");
}
}
printf("\n");
}