Reverse a String
Lesson 1 of 3 in Coddy's Interview Coding Challenges - Pack VIII course.
Challenge
EasyYou are given a string, and your task is to write a function named reverseString that reverses the given string.
Try it yourself
#include <string.h>
#include <stdlib.h>
char* reverseString(char* s) {
// Write code here
}