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

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more