mirror of
https://github.com/RGBCube/CSAssignments
synced 2025-06-08 15:12:09 +00:00
8 lines
119 B
C
8 lines
119 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
for (int i = 0; i < 10; i++) {
|
|
printf("Example\n");
|
|
}
|
|
return 0;
|
|
}
|