print 1 to 10 numbers without using loop

print 1 to 10 numbers without using loop


#include<stdio.h>
#include<conio.h>
int main()
{
int a=1;
  top:
if(a<=10)
{
printf("%d ",a);
a++;
goto top;
}

return 0;
}



0 Comments