1
Fork 0
mirror of https://github.com/RGBCube/CSAssignments synced 2025-06-08 15:12:09 +00:00
CSAssignments/sources/c/example/example.c
2022-11-04 16:44:37 +03:00

8 lines
117 B
C

#include <stdio.h>
int main() {
for (int i = 0; i < 10; i++) {
printf("Example");
}
return 0;
}