mirror of
https://github.com/Kaehvaman/OAIP.git
synced 2025-01-31 01:08:25 +04:00
8 lines
127 B
C
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");
|
|
} |