Display first 10 numbers in c
C program to display first 10 numbers
code:
#include<stdio.h>
  int main()
  {
  
     int i;
  
  
     printf("first 10 numbers");
  
  
    
      
      
      
       for(i=1;i<=10;i++)
  
  
     {
  
  
     printf("\n%d",i);
  
  
     }
  
  
     return 0;
  
  }
  
    
Explanation:
  
  Simple and easy program to understand
.png)
Comments
Post a Comment