```
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <stdlib.h>
void reverse(char *input) {
// TODO: Fill this out.
}
int main(void) {
char string[362] = "Hello :) I'm a string!";
printf("Start: %s\n", string);
reverse(string);
printf("End: %s\n", string);
}
Write a function reverse(char *input)
that, given a pointer to a list of characters, reverses the list of characters in place.