PRINT ALL VALUES FROM 20 TO 100

#include<stdio.h>
#include<conio.h>
void main()
{
int i;
i=20;
while(i<=100)
  {
   printf("%d",i);
   i=i+1;
  }
}

0 comments: (+add yours?)

Post a Comment