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>
369121518212730