mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
16 lines
164 B
C++
16 lines
164 B
C++
#include <stdio.h>
|
|
|
|
void print_loop(void) {
|
|
printf("Hello!\n");
|
|
}
|
|
|
|
int main() {
|
|
|
|
for(int i = 0; i < 5; i++) {
|
|
print_loop();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|