Which statement combines the initialisation and checking steps of counters in a single statements
Answers
Answered by
4
Step by step descriptive logic to convert number in words.
- Input number from user.
- Extract last digit of given number by performing modulo division by 10.
- Switch the value of digit found above.
- Remove last digit from num by dividing it by 10 i.e. num = num / 10 .
- Repeat step 2 to 4 till number becomes 0.
___________________________________
Similar questions