Hacker Rank C Challenges #003
Task Given a positive integer denoting , do the following: If , print the lowercase English word corresponding to the number (e.g., one for , two for , etc.). If , print Greater than 9 . Input Format The first line contains a single integer, . Constraints Output Format If , then print the lowercase English word corresponding to the number (e.g., one for , two for , etc.); otherwise, print Greater than 9 instead. Sample Input 5 Sample Output five Sample Input #01 8 Sample Output #01 eight Sample Input #02 44 Sample Output #02 Greater than 9 code : #include < assert.h > #include < limits.h > #include < math.h > #include < stdbool.h > #include < stddef.h > #include < stdint.h > #include < stdio.h > #include < stdlib.h > #include < string.h > char *...