PLEASE HELP ME FOR MY ASSIGNMENT
Create a C program that will input a number in(digit) range 0 - 2000000 and output its word equivalent.
Test Cases
example 1
input digit: 102
output: one hundred two
example 2
input digit: 1253641
output: one million two hundred fifty three thousand six hundred forty one
example 3
input digit: 0
output: zero
example 4
input digit: -9
output: invalid input
Class comments
PLEASE HELP ME