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

17 lines
293 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include "character.h"
#include "input.h"
#include "string.h"
int main() {
char* string = input();
int shift;
scanf("%d", &shift);
string = string_caesar_cipher(string, shift);
printf("%s\n", string);
free(string);
return EXIT_SUCCESS;
}