Discription About Program

1.C Program to Print Natural Numbers from 1 to N using For Loop.
2.This program allows the user to enter any integer Value.
Using For loop we will print the list of natural Numbers from 1 to user entered value.

For Example-:

	 #include<stdio.h>
	 void main()
	 {
	    int i;
	    for(i=0;i<10;i++)
	    {
	      printf("%d",i);
		  } 
	 }