C Language - Multiplication Table

 



#include <stdio.h>

#include <conio.h>

int main ()

{


int num;

int i;


printf ("Enter a number to see the table  \n");

scanf (" %d", &num);

printf ("The Multiplicataion of  %d is as follows: \n", num);


for ( i = 1; i < 11; i ++)


{

printf ("%d * %d = %d \n", num,i, num*i);

}


}


// ScreenShots:



Comments

Popular Posts