Tech Study

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
C program to print multiplication table of a given number 

To learn more about c program  viste these links :

C Program to convert days to years, weeks and days

TaggedWrite C program to print multiplication table of a given number

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more