1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/hello-world/solutions/c/function/solution.c

11 lines
158 B
C

#include <stdio.h>
#include <stdlib.h>
#include "input.h"
int main() {
char *string = input();
printf("Hello, %s!\n", string);
return EXIT_SUCCESS;
}