mirror of
https://github.com/Kaehvaman/OAIP.git
synced 2025-02-07 12:58:24 +04:00
11 lines
162 B
C
11 lines
162 B
C
#include <stdio.h>
|
|
#include <Windows.h>
|
|
|
|
int main() {
|
|
for (int i = 0; i < 10; i++) {
|
|
printf("%d bruh its C language\n", i);
|
|
}
|
|
puts("lolo", 6);
|
|
|
|
return 0;
|
|
} |