@@Land.namazi786 You should ask, "Who was Saddam Hussain". He was a dictator of Pakistan who killed alot of people. You could call him 'Kim Jong Un' of pakistan lolz
Thank you so much sir! I did the multiplication table again using the do while loop statement and I got exactly what I wanted earlier but was unable to print it out. Now I can print out authentic multiplication table of any number I want!!! Thank you so much!! Edit: it took only 16 lines of code to complete it!
@@ashishredhu2379 This is without using loops. # include int main() { printf("Here, we will print the multiplication table of the number entered by you. Please enter the number. "); int a; scanf("%d", &a); printf("%d x 1 = %d ", a, a*1); printf("%d x 2 = %d ", a, a*2); printf("%d x 3 = %d ", a, a*3); printf("%d x 4 = %d ", a, a*4); printf("%d x 5 = %d ", a, a*5); printf("%d x 6 = %d ", a, a*6); printf("%d x 7 = %d ", a, a*7); printf("%d x 8 = %d ", a, a*8); printf("%d x 9 = %d ", a, a*9); printf("%d x 10 = %d ", a, a*10); return 0; }
@@ashishredhu2379 #include int main(){ int num,index=0; printf("enter the number which u want multiplication table of "); scanf("%d", &num); do { index=index+1; printf("%dx%d = %d ",num,index, num*index); }while(index
Sir maine Kaafi time Pehle C kiya tha, this time I am in PG from IIT(ISM), bahut faayda ho raha hai...Aap bahut achcha sikha rahe hai.... It's very Nice to learn from Here....
I'm in a BCA student ,right now I'm in 3rd semester. There is c++ in my slaybus . But i can't understand it because past semester university take decisions of online class. So i think firstly I can learn C from you then I switch up on C ++ Thank you❤
i am also bca student and in my syllabus there is c language in first year of bca .... and this man helps me alot by doing this all work ...keep going ...
//Numbers from 100 to 1 int main() { int num, index = 100; printf("Enter your number: "); scanf("%d", &num); do { printf("%d", index); index = index - 1; } while (index >= num); // want to hang vs code temporarily. just change '>' to '
Bro i have one request for you Make this course basic to advance and also tell about how we make graphics in c . And give complete knowledge about c . ❤️❤️❤️❤️ Love you bro
Code to print the multiplication table of a given number is #include int main() { int num , i=0 ; printf("Enter the number you want the multiplication table of "); scanf("%d", &num); printf("The multiplication table of %d is ", num); do { printf("%d ", num*(i+1)); i=i+1; } while (i
sir aap bohot achai tra se smjhate ho sir oske liy very thanks full for you but sir mera ek doubt tha ki aapne jo int main ke baad brekit me %d ka use kiya he wo kiu kiya he sir please solve my doubt
sir can you make a separate video about return statement, like what's its purpose and how does it work, it was in python too during my school days and I couldn't understand its working, how's it different from print statement ?
Bhai course bilkul sahi hai bas aap 10-20 practice questions ki ek file dedo jisse hum log loops ki practice kr skein. Jaise school me ma'am bhot sare alag alag questions karati hai pattens etc. Ke
#include int main() { int i=0, j; printf("Enter a number which you want to obtain multiplication table ",j); scanf("%d",&j); do{ printf("%d ",i); i=i+j; }while (i
harry bbhai you doing great job finally i understand th eflow of looops good job brother love you .... i am bca student and c language is in my syllabus ... and with your help i can succed thank you bhai love u bhai .....bhot bhot shukriya .....
wow sir.....its very cool to learn.......sir, how can I count user input numbers like 1, 2, 3 = 3 numbers using loop ?....plz sir tel me the way......thanks for this
#include int main() { int num, index = 0; printf("Enter a number "); scanf("%d", &num); do { printf("%d ", index+1); index = index + 1; } while (index < num); return 0; }
Code to print a multiplication table of a number: #include int main() { int a,b=0; printf("Enter the number of which you want multiplication table: "); scanf("%d",&a); do { b = b + 1; printf("%d x %d = %d ",a,b,a*b); }while(b
I'll give you a little better code. #include int main() { int i, limit, index = 1; printf("Enter the number you want multiplication table of: "); scanf("%d", &i); printf("Enter the limit of your multiplication table: "); scanf("%d", &limit); printf("The multiplication table of %d is : ", i); do { printf("%d x %d = %d ", i, index, index * i); index = index + 1; } while (index
perfect solution of ex table. #incude int main() {int num, i=1; printf("enter the number you want the table of "); scanf("%d",&num); do { printf("%dx%d=%d ",num,i,num*1); i=i+1;} while (i
for practicing different programs....i will suggest use offline C compiler.... I'm using "coding c" named offline C compiler on my phone...easy to use and easy to carry...we can practice anytime we want....give it a try...
Multiplication table using do while loop #include int main() { int n, i=1; printf("Enter the number you want multiplication table of :"); scanf("%d",&n); do{ printf("%d×%d=%d ",n,i,n*i); i +=1; }while(i
Course Going Well I request to give more than one example and Give a task and I had a doubt that ,all numbers in this out put comes one by one like 1 2 . . 10 I want to get output like 1 6 . . . . 5 10 Like this how can I get like this..Pls tell me
Bhaiya apne pehele jo output dikhaya uspe 3 enter karne se 0,1,2 output aya. But uske bad me 45 enter karne se 0 to 45 output kaise aya? I mean as per the program it should be stopped before giving 45 as output. So how is this possible? Please explain bhaiya🙏🙏
Bhaiya hr ek video ke end me 1 question diya kro.
Ekdm shi
🙃
you want everything spoonfed to you?
Google kia karo waha lakho questions hai vai
@@kshitijshekhar1144 bodied sumit 🤣🤣🤣
Great course so fast thank you so much.
far*
@@yashasviagrawal5685 Mind your own business bro. Don't forget you're talking to Saddam Hussain. If you know, you know😂
🎉❤❤❤❤❤
@@ydafukomiwho is saddam husein
@@Land.namazi786 You should ask, "Who was Saddam Hussain". He was a dictator of Pakistan who killed alot of people. You could call him 'Kim Jong Un' of pakistan lolz
I'm understanding better than college..... Thanks bde Vai🙏💕🙏💕🙏💕🙏💕
Same bruh. So glad I found these series.
Course is going at the perfect pace ! Thank you very much for creating this course !
Thank you so much sir! I did the multiplication table again using the do while loop statement and I got exactly what I wanted earlier but was unable to print it out. Now I can print out authentic multiplication table of any number I want!!! Thank you so much!!
Edit: it took only 16 lines of code to complete it!
May you please comment the code of multiplication table !
@@ashishredhu2379 This is without using loops.
# include
int main()
{
printf("Here, we will print the multiplication table of the number entered by you.
Please enter the number.
");
int a;
scanf("%d", &a);
printf("%d x 1 = %d
", a, a*1);
printf("%d x 2 = %d
", a, a*2);
printf("%d x 3 = %d
", a, a*3);
printf("%d x 4 = %d
", a, a*4);
printf("%d x 5 = %d
", a, a*5);
printf("%d x 6 = %d
", a, a*6);
printf("%d x 7 = %d
", a, a*7);
printf("%d x 8 = %d
", a, a*8);
printf("%d x 9 = %d
", a, a*9);
printf("%d x 10 = %d
", a, a*10);
return 0;
}
@@arandomperson5107 just use index = index +1 ; using do while loop
no use for writing this long
@@ashishredhu2379 #include
int main(){
int num,index=0;
printf("enter the number which u want multiplication table of
");
scanf("%d", &num);
do {
index=index+1;
printf("%dx%d = %d
",num,index, num*index);
}while(index
Sir maine Kaafi time Pehle C kiya tha, this time I am in PG from IIT(ISM), bahut faayda ho raha hai...Aap bahut achcha sikha rahe hai.... It's very Nice to learn from Here....
ism dhanbad??
@@mdalikhan9712 yes but right now, I m in IIT PATNA
@@Priyam233 How college changed, partial dropped or mtech?
@@invincible6230 Persued M.Tech.
Ab kis college me ho bhai @@Priyam233
I'm in a BCA student ,right now I'm in 3rd semester.
There is c++ in my slaybus .
But i can't understand it because past semester university take decisions of online class.
So i think firstly I can learn C from you then I switch up on C ++
Thank you❤
From which university you belong
No learn c++ first
Then you can easily switch to c
which university you study ?
i am also bca student and in my syllabus there is c language in first year of bca .... and this man helps me alot by doing this all work ...keep going ...
@CSE-04 Rituraj Pal lol 😂😂😂😂
Harry bhai u r rock
Thank you so much for providing this great knowledge
O bhai sahb college to bs nam ka hai ..asli gyan to aap de rhe ho🔥❤️
Bhai , Najar mt lga yaar aise, blki duaye de sir ko ki sir aise hi pdhate rahe blki zoom mae bhi aa jaye one one one padhana . lol
thank you very much for providing this course for free, that's really great.
sir, itna acha se samjahya ki meiny apne pehly attempt mein hi multiplicaton table ka programing kr lia. with zero error....thank you so much sir
Syntax btado table ka mujhe bhi krni h
//Numbers from 100 to 1
int main() {
int num, index = 100;
printf("Enter your number: ");
scanf("%d", &num);
do {
printf("%d", index);
index = index - 1;
} while (index >= num);
// want to hang vs code temporarily. just change '>' to '
Code to print multiplication table
#include
int main(){
int a,i=1;
printf("Enter a number");
scanf("%d",&a);
do{
printf("%d
",i*a);
i++;
}
while(i
Bro i have one request for you
Make this course basic to advance and also tell about how we make graphics in c . And give complete knowledge about c . ❤️❤️❤️❤️
Love you bro
Bhai Ek Video Chahiye To Learn AI Using Python!
Jaldi banata hoon bhai!
Code to print the multiplication table of a given number is
#include
int main()
{
int num , i=0 ;
printf("Enter the number you want the multiplication table of
");
scanf("%d", &num);
printf("The multiplication table of %d is
", num);
do
{
printf("%d
", num*(i+1));
i=i+1;
} while (i
Nice bro, it's working
I tried this ques it has compiled but when I m giving a no.then no table is printed
Good but with for loop it is more easy and structured.
thank you so much
Going with a very nice Speed ❤️❤️
Bhai 3 Sal pahle q nahi mile😫. Afsos but late comes best comes. You are good teacher🙋.
Bhaiya, aap ka padhane ka style bahot e achha h, neither slow nor fast. Keep doing great work and help the needy people like this.
Thank you so much
i am student b.tech 1year and iam watching c program language thanku sir jii
agar printf ke andar index +1 karne ke ba
dle printf ko ( index = index + 1 )ke baad rakhe to bhi zero ke badle 1 se start hoga
sir aap bohot achai tra se smjhate ho sir oske liy very thanks full for you but sir mera ek doubt tha ki aapne jo int main ke baad brekit me %d ka use kiya he wo kiu kiya he sir please solve my doubt
Thankyou bhaiya, your explanation is superb
sir can you make a separate video about return statement, like what's its purpose and how does it work, it was in python too during my school days and I couldn't understand its working, how's it different from print statement ?
Thank you for this course sir
You are really great person sir...🙏🙏... thank you so much sir...
this course is really helping me alot
dez videos r helping a lott fr my cs exams
Bhai course bilkul sahi hai bas aap 10-20 practice questions ki ek file dedo jisse hum log loops ki practice kr skein.
Jaise school me ma'am bhot sare alag alag questions karati hai pattens etc. Ke
Bhai tu 2 saal baad comment kar raha hai😅
@@JayPatel_jp10 aur tu us 3 saal purane comment par reply kar raha hai
@@AwesomeCodings kyunki tu mujhe reply de sakta hai but Harry tujhe reply nahi dega🙃
Brother these videos are very helpful. great
I watch our videos regularly..thnx
Thik padha rhe ho bhaiya.koi problem nahi hai.❤
Harry bhai...woo
Index=Index+1;.......ko ++index; se replace kar skte hai ky...?
Love ur way of teaching
We need more ques for practice 😊
waahhh bro waahhh thank you so much bro 😀 muje samaj aaa gyaaa do while loop 🤟😁
#include
int main()
{
int i=0, j;
printf("Enter a number which you want to obtain multiplication table
",j);
scanf("%d",&j);
do{
printf("%d
",i);
i=i+j;
}while (i
Excellent video I have cleared all my doubts
harry bbhai you doing great job finally i understand th eflow of looops good job brother love you .... i am bca student and c language is in my syllabus ... and with your help i can succed thank you bhai love u bhai .....bhot bhot shukriya .....
awesome explanation
Sir all is well going at your Platform❤❤❤ but the thing is if you helps us to solve many questions it would be more Amazing
Course ka pace ekdam shi hai bhaiya.
Thanks Harry Bhaiya
wow sir.....its very cool to learn.......sir, how can I count user input numbers like 1, 2, 3 = 3 numbers using loop ?....plz sir tel me the way......thanks for this
Bro didn't get ur Q ...
Plz ask in details
#include
int main()
{
int num, index = 0;
printf("Enter a number
");
scanf("%d", &num);
do
{
printf("%d
", index+1);
index = index + 1;
} while (index < num);
return 0;
}
Great job Harry bhai
sir kindly make a video on analysis and design of algorithms Please
Bhai mst video hai maine aadha course csukh liya
Your teaching is World best teaching for me sir😊 I am thankful for your helpful video's 🙏
the pace is normal understandable enough thanks
When will the condition be false?
Your teaching method is great!!
Happy Teacher's Day🙏🏻
Perfect course!! Thank you Harry bhai.
Bhai ek dum badhiya. Sab smjh aa rha hai abb tak. 🙏🏻
Thanks Harry Bhaiya
Are waah iske jariye badi asaani se 19 ka table likh sakte hain😄👏
Kyuki hm jitna bar v yaad krte tab bhi bhul jate the.
Very very thank you 😂😂😂🤣🤣😂🤣
Code to print a multiplication table of a number:
#include
int main()
{
int a,b=0;
printf("Enter the number of which you want multiplication table:
");
scanf("%d",&a);
do
{
b = b + 1;
printf("%d x %d = %d
",a,b,a*b);
}while(b
I'll give you a little better code.
#include
int main()
{
int i, limit, index = 1;
printf("Enter the number you want multiplication table of:
");
scanf("%d", &i);
printf("Enter the limit of your multiplication table:
");
scanf("%d", &limit);
printf("The multiplication table of %d is :
", i);
do
{
printf("%d x %d = %d
", i, index, index * i);
index = index + 1;
} while (index
नहीं भाई एक दम सही और परफेक्ट टेचिंग कर रहे हैं
thnks finally my loops concept is cleared👍🏻
Thanks a lot sir for this series.😊😊😍😍😍
sir mere bi programme ho rah hai executed.so i really like your course.
perfect solution of ex table.
#incude
int main() {int num, i=1;
printf("enter the number you want the table of
");
scanf("%d",&num);
do
{ printf("%dx%d=%d
",num,i,num*1);
i=i+1;}
while (i
Bhau complete pace neither fast nor slow
Bhayia ap bohot accha palate ho💥❤
Thank you sir 😍😍
my perfect tutor
Sir your course is perfect and explanation is very good thank you very much 💖💖💖
Great teaching with great speed 😘😘😘
It was really helpful,thank you..🙏
Bohot sahi course speed hai sub smajh mein aa raha hai harry bhai😇😇😇😇😇😇
u are teaching so very good sir and its course no fastly
Sir your course is great and its pace is good.I just have one doubt that how can I practice it more ?
you can download the book pdf named as "let us c" .
for practicing different programs....i will suggest use offline C compiler.... I'm using "coding c" named offline C compiler on my phone...easy to use and easy to carry...we can practice anytime we want....give it a try...
Multiplication table using do while loop
#include
int main() {
int n, i=1;
printf("Enter the number you want multiplication table of :");
scanf("%d",&n);
do{
printf("%d×%d=%d
",n,i,n*i);
i +=1;
}while(i
Thank you bhaiya!
you are teaching with good speed
Thank you..
Sir , you are going with decent speed !!,you are great !!
brother can you help me with a code??
#include
/*
factorial calculator using do while
*/
int main()
{
int a, n, i = 0;
scanf("%d" , &n);
do
{
i += 1;
a = n;
a = a*(n - i);
} while (i < (n-1));
printf("%d", a);
return 0;
}
can you please tell What Im doing wrong??....
हरि भाई आप मस्त तरीके से समझाते हो
harry bhai speed normal he kyun ke achi tara samjh me aja ta he aur maza ata he
Harry bhai aap to bahut acha padate ho kash aap mere teacher hote college me
Course Going Well I request to give more than one example and Give a task and I had a doubt that ,all numbers in this out put comes one by one like
1
2
.
.
10
I want to get output like
1 6
. .
. .
5 10
Like this how can I get like this..Pls tell me
thanksss bahi for such an amazing cource
ek dam sahi padha rahe ho bhai
Ekdum op ho aap harry sir
Best course for c ever seen
Great explanation..🙏🏻👍
definately better than college thankyou so much
its easy to understand for beginners, thank you sirji ....
Bohat khub harry bhai..👌
You made it freaking easy
No you are apply good methods in this corsh
Course best chal rha hai
I am watching this video 2023 sir your expilattion amzing every concep Cristal and clear thanks up lot😊
Bhai spellings💀💀😂
Sir you are great
Yes you are sure
Great job..
Take love from Bangladesh
Bhaiya apne pehele jo output dikhaya uspe 3 enter karne se 0,1,2 output aya. But uske bad me 45 enter karne se 0 to 45 output kaise aya? I mean as per the program it should be stopped before giving 45 as output. So how is this possible?
Please explain bhaiya🙏🙏
bro you are my vartual friends. but when you give me more projects so i think i can perform better
Harry Bhai...💓
Thank you 😊 for sharing knowledge
done sir..
sir your mathod is so best sir thank you so much sir