mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-09-11 23:11:21 +02:00
11 lines
174 B
C
11 lines
174 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
char input[1024];
|
|
while (scanf("%s", &input) != EOF) {
|
|
printf("Hello, %s!", input);
|
|
}
|
|
return EXIT_SUCCESS;
|
|
}
|