Tables program

0

Printing table for the given number using C for loop


CODES:>

#include<stdio.h>
#include<conio.h>
Int main ( )
{
Clrscr ( );
Int i=1, number=0;
Printf("enter the number");
Scanf ("%d",&number);
For (i=1; i<=10; i++);
{
Printf ("%d\n",(number*i));
}
Getch ( );

}

INPUT:>

            3

OUTPUT>

   3
   6
   9
   12
   15
   18
   21
   27
   30

   



Post a Comment

0Comments
Post a Comment (0)