Write a program that forces the user to enter a string with more than 5 characters and less than 100 characters and displays it. Don't use gets(). If less than or equal to 5 characters, greater than or equal to 100 characters, print "Invalid result"
Sample Input 1:
abcdefg
Sample Output 1:
abcdefg
Sample Input 2:
abc
Sample Output 2:
Invalid result
References: C From Theory