OAIP_Mirror/Arrays/Arrays/hello.c
2024-10-21 17:04:00 +04:00

8 lines
127 B
C

#include <stdio.h>
void hello() {
for (int i = 0; i < 10; i++) {
printf("%d bruh its C language\n", i);
}
puts("lolo");
}