How to print using C programming By Kanai
Have you any problem? Contact with me (Link has been given bellow). //please don't copy this, this is only for learn #include<stdio.h> #include<conio.h> main() { // clrscr(); int num1,num2,i; printf("Enter your first number,from where it will be start"); scanf("%d",&num1); printf("Enter last number , where it will be stopped"); scanf("%d",&num2); for(i=num1;i<=num2;i++) { printf("%d\n",i); } getch(); }