Write a C Program using While Loop





Write a C Program using While Loop, Loop, While, Nested, Sumit Kar, Timus Rak


#include<stdio.h>

void main()

{

    int i=1;

    while(i <= 10)

    {

        printf("%d\n",i);

        i++;

    }








}


Comments

Popular posts from this blog

Write a Program to Add two 3x3 Matrix using C

C program for Unit Conversion

Write a Program to Add two 5x5 Matrix using C