#include<stdio.h>
int main()
{
int i=1,n;
printf("Enter the last number\n");
scanf("%d",&n);
printf("All natural number from 1 to %d is\n",n);
while(i<=n)
{
printf("%d ",i);
i++;
}
}
OUTPUT
Enter the last number
8
All natural number from 1 to 8 is
1 2 3 4 5 6 7 8
Visit Homepage
Comments
Post a Comment