Write a C program that reads a string from the user, reverses it, and then prints the reversed string without using any built-in string manipulation functions like strrev().
Hint: You can use a for loop to iterate through the string and reverse it in-place using array indexing.