C_36 C Program to Print Table of a Number | C Language Tutorials

preview_player
Показать описание
In this lecture we will learn how to print a table of a number in C.
coding exercise in C

*********************************************

Connect & Contact Me:

*******************************************

More Playlists:

#cprogramming #coding #codingexercises #program #clanguage #jennyslectures
Рекомендации по теме
Комментарии
Автор

for printing the output like this 2x1=2 we will write like that printf ("%d X %d=%d", number, i, a);

harshvardhantandon
Автор

I used to struggle alot on how to print multiplication table. But now i find it very easy. Now i clearly understand how to do it at anytime. Thanks very much mam. You are here to brighten our future

abdulrahimjalloh
Автор

11:16
we replace printf("%d", num*i) by
printf("\n %d X %d = %d ", num, i, num*i);

sanketdisale
Автор

Explanation is too easy jenny Mam, Thanks a lot...

divyanshtripathi
Автор

I Like the consistency .UR CONSISTENCY IS Amazing ♥️♥️

Npanywayme
Автор

Mam please start making project in C as soon as possible

PT-vvet
Автор

#include <stdio.h>
#include <conio.h>
int main()
{
int num, i, product;
printf("Enter a number whose multiplication table is to be \ncalculated: ");
scanf("%d", &num);
printf("Multiplication table of %d is:\n", num);
//now using for loop for a product table
for (i=1;i<=10;i++)
{
product=(num*i);
printf("%d*%d=%d\n", num, i, product);
}
getch();
return 0;
}

vinodhemsworth
Автор

printf("%d*%d=%d\n", num, i, a);
This is the proper way for getting output like 2*1=2
2*2=4...
And so on..

vaibhavkumbhar
Автор

Thank you mam...
I am really greatfull to you...
Actually I have fear about programming.... and during this pandemic situation I don't get what they said in online classes... But I can understand your lectures... I am really greatful to you... Thank you mam

cricket_addicted_guys
Автор

#include<stdio.h>
#include<conio.h>
int main()
{
int number, I, a;
printf("enter a number");
scanf("%d", &number);
for(I=1;I<=10;I++)
{
a=number*I;
printf("%d * %d = %d\n", number, I, a);
}
}
This is the program to print the complete table 😊

cricket_addicted_guys
Автор

Printf("%d×%d=%d", i, number, a);
Output like this:
1×2=2

elavarasan_r
Автор

Love you mam♥️♥️ u are doing great job

veercreation
Автор

Lots of love towards your lectures mam🙏

venkatreddylakkireddy
Автор

Mam, Is this Correct?..
printf("%d * %d = %d", number, i, a);

bharatho
Автор

For the output we write ("%d*%d=%d", number, i, a); in the printf function of the for loop.

mahindramahi
Автор

mam your explanation is very good i understand everything .thank you so much mam.

kramanjineyulu
Автор

Hello Ma'am, can you explain a proper idea about GATE exam and it's preparation
as per subject requirements

tronriot
Автор

If we want in column wise the add the printf statement with New line syntax
Printf(" \n");

murgan
Автор

i really love you jenny ( amazing instructor ), i laughed so much at 7.22 🤣

AzizAlbaloushi
Автор

Very well explained for loop.Mam please make video on nested for loop.

SakshiNalwar