Thursday, 20 October 2011

page 89 example 3

#include<stdio.h>
#include<conio.h>
int x;
main()
{
      x=1;
      while (x<=10)
      {
            printf("%d\n",x);
            x++;
            }
            getch();
            }

0 comments:

Post a Comment