how to 1 to 100 in C++, without loop and recursion
Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to 1 to 100 in C++, without loop and recursion .So let’s go to our topic #include <iostream> using namespace std; template<int N> class PrintOneToN { public: static void print() { PrintOneToN<N-1>::print(); // Note that this is not recursion … Read more