How will you print numbers from 1 to 100 without using loop?
We cannot use any loop, for, do while, while. Print without the use of loop?
- 5117 Views
- 3 Answers
3 Answers
- Is C++ better than C? Explalain your answer
- Mention the four important part of looping.
- What is structured programming?
- What are storage classes in C language?
- The best CBD for Life
- Ищу достойного мужчину!
- Is C++ better than C sharp? Explain your answer
- What are preprocessor directives in c language?
- How to dynamically allocate a 2D array in C?
- Write a program to store 5 elements in the array P and 3 elements in the array Q.Produce a third array R after joining the array P and Q.Display the resultant array.
Practice Mock Test
c programming
the print_numbers function calls itself with n - 1 until n reaches 0. When n is greater than 0, it prints the a rel='nofollow' href="https://geometrydash-lite.io"geometry dash lite/a after the recursive call, which ensures the numbers are printed in ascending order from 1 to 100.