Write a C program using recursion to calculate the length of a string.
A single line containing a string (no spaces).
Print the length of the string.
Length <= 100
recursion
9
Recursive relation: length(str) = 1 + length(str + 1) with base case pointing to null terminator '