Print 1 - 100 without using loop, recursion and macro expansion in C?

// CPP program to print one 100 times.
#include
#include
using namespace std;

int main()
{
jmp_buf buf;
int i= 1,count = 0;;
setjmp(buf);
std::cout << i << std::endl;
     i++; count++;
     if(i<= 100)
      longjmp(buf,1);
    cout<
return 0;
}

Comments