Breaking

one to ten



#include<stdio.h>
#include<stdlib.h>
Void main()
{
   int i;
  
   for(i=1; i<=10; i++)
   {
   printf("\n %d", i) ;
   }

Simple Output :
1
2
3
4
5
6
7
8
9
10