Thursday, March 8, 2012

Table of two

//table of two
#include<stdio.h>
#include<conio.h>
main()
{
      int i,m;
      for(i=1;i<=10;i++)
      {    m=2*i;
                        printf("%d",m);
                        printf("\n");
      }
      getch();
      }

No comments:

Post a Comment