wap to print numbers from 1 to 100 without the use of loop.

#include<stdio.h>
main()
{
static int i=100;
static int a=1;
if(--i)
main();
printf("%d\n",a++);
}

No comments:

Post a Comment

Implemet Stack in python

  class Stack : def __init__ ( self , data ): self . stack = [] if ( data ): self . stack . append ( da...