Write C program to print multiplication table of a given number

Introduction

Write C program to print multiplication table of a given number

#include <stdio.h>

int main()
{
    int i, num;

    //Reading number
    printf("Enter number to print table: ");
    scanf("%d", &num);

    for(i=1; i<=10; i++)
    {
        //Printing table of number entered by user
        printf("%d x %d = %d\n", num, i, (num*i));
    }

    return 0;
}

Result

Write C program to print multiplication table of a given number
Write C program to print multiplication table of a given number

Leave a Comment