This commit is contained in:
2025-05-06 03:36:02 +03:00
parent 991478f774
commit 785c2b0e50
14 changed files with 225 additions and 2 deletions

View File

@ -0,0 +1,13 @@
#include <stdio.h>
void rectangleOfAsteriks (int side1, int side2);
void rectangleOfAsteriks (int side1, int side2) {
for(int i = 0; i < side1; i++) {
for(int j = 0; j < side2; j++) {
printf("*");
}
printf("\n");
}
}