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

17
w3school/stringsloop.c Normal file
View File

@ -0,0 +1,17 @@
#include <stdio.h>
int main () {
char carName[] = "GOLF";
int i;
int j = 0;
while (j < 5) {
for (i = 0; i < 5; i++) {
printf ("%c\t", carName[i]);
}
printf ("\n");
j++;
}
return 0;
}