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

12 lines
174 B
C

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