C++ Program to Print Numbers From 1 to n Without Using Loops, Recursion or Goto Statement
You may have made program to print numbers from 1 to n using loops, recursion or goto statement. But have you ever thought about doing this without help of loops, recursion or goto? It can be done without using such things as explained in below program.Also Read: C program to find factorial of any number using …