Interview Quetions How will you print numbers from 1 to 100 without using loop? December 16, 2019 - By tejsumeru.12@gmail.com We can use recursion for this purpose. void printNos(unsigned int n) { if(n > 0) { printNos(n-1); printf("%d ", n); } }