Pages

Sunday, 15 July 2012

Create 2x2 Table


#include <stdio.h>
#include <conio.h>

main()
{
    int a,b;
    a = 1;
    b = 2;

    for (a; a <= 10; a++)
    {
           printf("%d * %2d = %2d\n",b,a,(a*b));
    }
   getch();
}

0 comments:

Post a Comment