recursive

Home >> Sem 2 >> Data-structur >> recursive

void main(int n)
 {
   printf("%d  ",n);
   n++;
   if(n>100)
    exit(getch());
  main(n);
}