I need some feedback. How is the course going? Is it going too fast or too slow or okay? Please let me know because I am getting mixed feedback on speed of this course! Also how often should I use pen and board to teach?
I completed the challenge. Thanks Sir you are a GEM. #include int main(int argc, char const *argv[]) { int Table, index =0; printf("Enter the number which you want the Mulyiplication Table of "); scanf("%d",&Table); printf("The table of %d is ",Table); do{ printf("%d * %d= %d ",Table,index,Table*index); index = index+1; }while (index
Challenge accepted by Ojas aka OJ coder🔥🔥🔥🔥 I know a bit of c becz i have already done classes of basic C but I didnt understood everything so i am revising on youtube(I AM DOING THIS COURSE ON TURBO C )
challenge accepted and completed the task. I am Civil Engineer learning this for my own interest . I find your course is really very satisfying. Thank you so much Mr. Harry
learnt python from sir in lockdown cz i was bored when i was in 10th and planned on learning c too but i couldn't make time for it, now i am in clg 1st year and still his videos are the best in yt
challenged accepted and completed 100%.seriously you had me for some moment...well I won't say that I did it myself what I mean is THE ANSWER IS ITSELF IN THIS VIDEO ;
challenge accepted and code written sir ! thank you so much, I'm a complete beginner to this but will definitely be watching the rest of your videos in this course to learn from you !
you are doing really great job for the student like me, because of you only i am able learn c language thank you so much sir, this job is not less than any samajsudharak ,you are doing something for thos people who did not able to learn because of financial issue... thanks once again sir....
challenge accepted sir and thank you so much sir i am a beginner and i really worry about coding but after view your courses ....literally very helpfull for me
//Question 1 /* Print multiplication table of a number entered by the user in pretty form Example: Input Enter the number you want multiplication table of: 6 Output: Table of 6: 6 X 1 = 6 6 X 2 = 12 . . . 6 X 10 = 60 */ int main() { int a; printf("Enter the number you want table of "); scanf("%d", &a); printf("%d * 1 = %d ", a, a*1); printf("%d * 2 = %d ", a, a*2); printf("%d * 3 = %d ", a, a*3); printf("%d * 4 = %d ", a, a*4); printf("%d * 5 = %d ", a, a*5); printf("%d * 6 = %d ", a, a*6); printf("%d * 7 = %d ", a, a*7); printf("%d * 8 = %d ", a, a*8); printf("%d * 9 = %d ", a, a*9); printf("%d * 10 = %d ", a, a*10); return 0; } The output is Copyright (C) Microsoft Corporation. All rights reserved. Install the latest PowerShell for new features and improvements! aka.ms/PSWindows PS C:\Users\dudem\Desktop\CWH c> gcc ex1.c -o ex1 PS C:\Users\dudem\Desktop\CWH c> ./ex1.exe Enter the number you want table of 13 13 * 1 = 13 13 * 2 = 26 13 * 3 = 39 13 * 4 = 52 13 * 5 = 65 13 * 6 = 78 13 * 7 = 91 13 * 8 = 104 13 * 9 = 117 13 * 10 = 130 PS C:\Users\dudem\Desktop\CWH c> I accepted the challenge and I think I've completed the challenge.
yes you're right bro but i want to modify your code to make shorter #include int main () { int b =0 ; int c; printf("Enter a number that you want table of "); scanf("%d", &c); { printf("Table of %d is ", c); }
Challenge Accepted Edit: I have solved the problem.(I had put everything into the problem, was not putting %d on both the first number to be multiplied and the answer, was not aware that %d can be assigned two values at same time, thanks to one of the comments which posted the answer.) not happy as did not do the question fully by myself, but satisfied that i had reached the answer almost by myself. At last thanks Harry Sir for the great course!
Challenge accepted #include Void main (){ int n, mul, i; Printf("enter the no for which multiplication is needed"); scanf ("%d",&n); printf ("table of %d",n);for(i=1;i
//Challenge accept ==challenge complete //Thank you bro👍 #include #include void main() { int a, b, i; printf("enter the value of a: "); scanf("%d",&a); for(i=1;i
@@HansPrimary I think it can be done in a much easier way like this: #include int main() { int num,i; printf(" Enter the number you want multiplication table of: "); scanf("%d",&num); printf(" Table of %d is: ",num); for (i=1;i
Challenge accepted i got confusion in why we type a 2 times but by trial and error i understood that thanks fore teaching # include int main() { int a; printf("Enter number that you want to multipication table of : "); 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; }
#include int main() { int num, i; // Ask the user for the number printf("Enter a number: "); scanf("%d", &num); // Print the multiplication table printf("Multiplication table for %d: ", num); for (i = 1; i
@@BGMIHUB_Fun Bro you should declare accepted line on same line without terminate it by semi colon char challenge [10] = 'accepted'; Otherwise compiler will encounter by error
this is correct code #include #include //problem statement - print a multiplication table of a number enterred by user int main(){ int n , a, i; printf("enter the number "); scanf("%d", &n);
I need some feedback. How is the course going? Is it going too fast or too slow or okay? Please let me know because I am getting mixed feedback on speed of this course!
Also how often should I use pen and board to teach?
Course is good..... I want to make a collaborative type video with your channel.. Please give me your mail id so that I can discuss further
goooooooddddd
Okay
Awesome...
Start givining notes
Challenge Accepted Sir,
Thank You for helping us in understanding C concepts more easily and clearly.
Challenge accepted and completed in two different ways; one using for loop and another is beginner's method.
Bro but Harry bro doesn't say anything about loop
Heyy bro what is the beginners method
@@tryit1719arithmetically multiplication vala
@@newsandotherstuff2129ek ek line ko multiplication and run kare kya??? I'm not understanding how to do it through beginner's method
@@dinkisolanki8251 hn ek ek link likh ke print
Challenge accepted and challenge completed alhamdulillah thank you sir❤❤.
I completed the challenge. Thanks Sir you are a GEM.
#include
int main(int argc, char const *argv[])
{
int Table, index =0;
printf("Enter the number which you want the Mulyiplication Table of
");
scanf("%d",&Table);
printf("The table of %d is
",Table);
do{
printf("%d * %d= %d
",Table,index,Table*index);
index = index+1;
}while (index
Galat hai bhai tera
@@leviackerman-rn7xi kase galat hai bta
Yh
Do while abhi sikhaya nahi
Jitna sikhaaya hai utne se kar
galat ha lodu loop abhi pdhi ni
After 3 year I am Accepting this challenging.
Same bhai 😅😅
Same
Can you help me bro
@technical india yor insta id ?
@pchK3992
Sir course is going very well. Not too slow and not too fast it has a medium speed.
Challenge accepted by Ojas aka OJ coder🔥🔥🔥🔥
I know a bit of c becz i have already done classes of basic C but I didnt understood everything so i am revising on youtube(I AM DOING THIS COURSE ON TURBO C )
I have accepted the challenge
And i did it sir. I got a self satisfaction by this.. thank you so much sir🙏🙏
Solution video kha hai
Challenge accepted 🗣
Even after 2 years these videos are very very usefull. thank you!
I'm watching this video 2 year a go of uploaded , I don't believe your word😱😱
challenge accepted sir
you will definitely make us a job ready.
Great initiative taken by you for teaching programming to everyone..💯
challange accepted
harry bahi you are a best codding teacher
Challenge accepted Harry ... I'll make sure that I complete this tutorial ASAP!
I hope you will help me throughout this course
Even after 3 years of this video it very amazing
Jaynendra😳
Jayendra!!!! 😳😳
Challenge accepted!!
Harry bhai ❤️
challenge accepted i hope i complete this challenge ASAP!
you are such a great teacher sir.
challange accepted and completed as well. thank you harry bhai
Your teaching level don't have any comparison❤
Challenge accepted master Harry 😊
Kya tum bhi 😅 abhi start kiye ho c agar yes to reply Karo mere paas c ka bahut sara source code hain 😅
challenge accepted and completed the task. I am Civil Engineer learning this for my own interest . I find your course is really very satisfying. Thank you so much Mr. Harry
ap ka out put show ho raha hai
plz reply me
@@iqrashafi9710
printf(" %d
" +6*1);
printf(" %d
" +6*2);
.
.
.
printf(" %d" +6*10);
Without loop
@@jaibharatmata8921 thanks
@@iqrashafi9710 your welcome dear friends
@@iqrashafi9710#include
int main()
{
printf ("multiplication in table 6 no
");
int a,b;
a=6;
b=1;
printf ("6×1=%d
",a*b);
b+=1;
printf ("6×2=%d
",a*b);
b+=1;
printf ("6×3=%d
",a*b);
b+=1;
printf ("6×4=%d
",a*b);
b+=1;
printf ("6×5=%d
",a*b);
b+=1;
printf ("6×6=%d
",a*b);
b+=1;
printf ("6×7=%d
",a*b);
b+=1;
printf ("6×8=%d
",a*b);
b+=1;
printf ("6×9=%d
",a*b);
b+=1;
printf ("6×3=%d
",a*b);
return 0;
}
"Challenge accepted " and Thank you so much sir to make me understood
I did it .......... 😊
@@movies_channell how?
Challenge accepted
Dil SE thank you bhaiya ❤️❤️❤️
sir you are opp me apke video se bhot sikhta hu and aap bhot simple way me sikhate ho and challenge accepted
challenge accepted sir
you will definitely make us a job ready.
Great initiative taken by you for teaching programming to everyone
Think Giving Job to someone ...
bro you got any job?????
Challege accepted...actually I have little idea about while loop..hence I solved this problem using loop
can you please tell how you did it?
Can u tell me how u did this?
2:15 Harry set keyboard on fire 😂😂🔥🔥
learnt python from sir in lockdown cz i was bored when i was in 10th and planned on learning c too but i couldn't make time for it, now i am in clg 1st year and still his videos are the best in yt
challenge accepted and thanks a lot for teaching in such a good manner so that these questions seems so easy to a beginer.
Challenge accepted after completing😁😁
Thank you for these type of teaching
I cant believe that i develop that program by myself😃😃
Please send the code you wrote for this program
@@mehulkumar2754 COPY PASTING WONT LET U LEARN
@ViLen it's easy just ask no then print a*1
a*2 like this it's easy
I accept challenge after 2 years . Quality and knowledge of video is much better than college teachers . Aise teacher chahiye muze mere college me 🥺🥺
True bro our programming teacher suckssss
challenged accepted and completed 100%.seriously you had me for some moment...well I won't say that I did it myself what I mean is THE ANSWER IS ITSELF IN THIS VIDEO ;
any one in market does not want to teach me programming because i am in 9 stranded by your playlist help me so much
hume to 2nd year m bhi nhi aya *-*
@@aryashahi9336 haha ye doodh peete bacho ko pta nhi kya hi chul hai
Same now i am in 10
Challenge accepted and done 👍 .... You are teaching very nice sir, it's neither too fast nor too slow.
can you send me the code of this exercise
challenge accepted ✌️👍
you are soo great teacher sir 🤗🤗❣️😌
wheres the ans
code
Challenge accepted Harry Bhai 🎉🎉🎉🎉🎉🎉😊😊😊
challenge accepted and code written sir ! thank you so much, I'm a complete beginner to this but will definitely be watching the rest of your videos in this course to learn from you !
Are they useful
Challenge accepted and completed in 8 mins.
Challenge accepted button 👇👇
I thought I was the only one watching this series in 2024😂😂❤#harrybhaiop
@@baklolyou8571 😄😄
Me too 😅@@baklolyou8571
@@baklolyou8571 Same bro 😁
Same bro 😅
challange accepted as well as completed........thanks for your playlist
but how i can't can you share the code please
you are doing really great job for the student like me, because of you only i am able learn c language
thank you so much sir, this job is not less than any samajsudharak ,you are doing something for thos people who did not able to learn because of financial issue...
thanks once again sir....
challenge accepted!😇
now learn C language after using C in one video course.
it's was awesome.
Exersise completed
thank you harry sir for explaining us
bhai kya kiya isme aapne
@@HACKINGWORLD2.0 ye bina loop ke hoo skta hai???
CHALLENGE ACCEPTED and thank u so sir for helping us i have written the code without any help
#include
Main()
{
Int num,i ;
Printf(“enter the number of which you want the table of “);
Scanf(%d%d,&num,&i);
Num=num*i;
(i>1,i
wrong
challenge accepted sir and thank you so much sir
i am a beginner and i really worry about coding but after view your courses ....literally very helpfull for me
"challenge accepted" and thank you for teaching everyone
Hello I'm not getting it can uh please explain ?
Challege accepted 🤝
And thank you so much bhaiya for this marvelous playlist🤗❤️
Challenge excepted sir😊
Printf("challenge accepted ") ;
😂😂
madam printf ka P small hoga nhi to error aayega
@@sanjaysoni-hh3xd Yes it is giving error
@@sanjaysoni-hh3xd😂😂 correct
//Question 1
/*
Print multiplication table of a number entered by the user in pretty form
Example:
Input
Enter the number you want multiplication table of:
6
Output:
Table of 6:
6 X 1 = 6
6 X 2 = 12
.
.
.
6 X 10 = 60
*/
int main()
{
int a;
printf("Enter the number you want table of
");
scanf("%d", &a);
printf("%d * 1 = %d
", a, a*1);
printf("%d * 2 = %d
", a, a*2);
printf("%d * 3 = %d
", a, a*3);
printf("%d * 4 = %d
", a, a*4);
printf("%d * 5 = %d
", a, a*5);
printf("%d * 6 = %d
", a, a*6);
printf("%d * 7 = %d
", a, a*7);
printf("%d * 8 = %d
", a, a*8);
printf("%d * 9 = %d
", a, a*9);
printf("%d * 10 = %d
", a, a*10);
return 0;
}
The output is
Copyright (C) Microsoft Corporation. All rights reserved.
Install the latest PowerShell for new features and improvements! aka.ms/PSWindows
PS C:\Users\dudem\Desktop\CWH c> gcc ex1.c -o ex1
PS C:\Users\dudem\Desktop\CWH c> ./ex1.exe
Enter the number you want table of
13
13 * 1 = 13
13 * 2 = 26
13 * 3 = 39
13 * 4 = 52
13 * 5 = 65
13 * 6 = 78
13 * 7 = 91
13 * 8 = 104
13 * 9 = 117
13 * 10 = 130
PS C:\Users\dudem\Desktop\CWH c>
I accepted the challenge and I think I've completed the challenge.
great brother👍👍 your code is right
Thanks man, i was wondering as to how to use that %d ting. Got it now. Thanks buddy
yes you're right bro but i want to modify your code to make shorter
#include
int main ()
{
int b =0 ; int c;
printf("Enter a number that you want table of ");
scanf("%d", &c);
{
printf("Table of %d is
", c);
}
for(int i=1 ; i
Right..
Super...
Challenge Accepted
Edit: I have solved the problem.(I had put everything into the problem, was not putting %d on both the first number to be multiplied and the answer, was not aware that %d can be assigned two values at same time, thanks to one of the comments which posted the answer.) not happy as did not do the question fully by myself, but satisfied that i had reached the answer almost by myself. At last thanks Harry Sir for the great course!
Same here bruh. I was writing printf("a×1=%d",a×1)
I am Accepting this challenging.
Challenge accepted
#include
Void main (){
int n, mul, i;
Printf("enter the no for which multiplication is needed");
scanf ("%d",&n);
printf ("table of %d",n);for(i=1;i
there is an error u cant give integer 6 directly in code bcuz any number if u enter the output will be tables of 6 replace it with n
could u pls explain how did u write the last print statement ...6*%d=%d,i,mul ?
For loop to padhaya hi nhi abhi tk 🙄
I am actually 3 years late, but your challenge is accepted.
Challenge accepted sir 👍 you doing very good work .thank you so much to give the brief information.
Solution video kha hai?
Challenge accepted and completed🥳. Thank u sir 🙏
Phley Aaye hote meri zindgi me to kafi waqt bachta❤️😌😌😌✌️💙
challenge Accepted sir ! Thank you sir for this amazing guidance 😊😊
Don't know if the challenge is still on 😂
But yeah...
Challenge Accepted ✌️
same here
challenge accepted harry sir!😊
as well as completed!
thank you so much🙏
How plz tell
printf("challange accepted");
challenge accepted bhaiya. thank you itna support karne ke liye.
# include
int main()
{
for(int i=1; i
//Challenge accept ==challenge complete
//Thank you bro👍
#include
#include
void main()
{
int a, b, i;
printf("enter the value of a: ");
scanf("%d",&a);
for(i=1;i
Brother me beginner hu aur mujhse ye nahi hua💀
@@kanakkhobragade7238
// Online C compiler to run C program online
#include
int main()
{
int a;
printf("enter the number which you're looking for a table :");
scanf("%d",&a);
printf("the table of %d
",a);
printf("%d",a);
printf("x1:");
printf("%d
",a*1);
printf("%d",a);
printf("x2:");
printf("%d
",a*2);
printf("%d",a);
printf("x3:");
printf("%d
",a*3);
printf("%d",a);
printf("x4:");
printf("%d
",a*4);
printf("%d",a);
printf("x5:");
printf("%d
",a*5);
printf("%d",a);
printf("x6:");
printf("%d
",a*6);
printf("%d",a);
printf("x7:");
printf("%d
",a*7);
printf("%d",a);
printf("x8:");
printf("%d
",a*8);
printf("%d",a);
printf("x9:");
printf("%d
",a*9);
printf("%d",a);
printf("x10:");
printf("%d
",a*10);
return 0;
}
try this
@@HansPrimary isse accha ye try krlo
#include
int main(){
int number; // This will store the number of which you want to print the multiplication table
printf("Enter the number: ");
scanf("%d", &number);
printf("%d x %d = %d
", number, 1, number*1);
printf("%d x %d = %d
", number, 2, number*2);
printf("%d x %d = %d
", number, 3, number*3);
printf("%d x %d = %d
", number, 4, number*4);
printf("%d x %d = %d
", number, 5, number*5);
printf("%d x %d = %d
", number, 6, number*6);
printf("%d x %d = %d
", number, 7, number*7);
printf("%d x %d = %d
", number, 8, number*8);
printf("%d x %d = %d
", number, 9, number*9);
printf("%d x %d = %d
", number, 10, number*10);
return 0;
}
@@HansPrimary I think it can be done in a much easier way like this:
#include
int main()
{
int num,i;
printf("
Enter the number you want multiplication table of: ");
scanf("%d",&num);
printf("
Table of %d is:
",num);
for (i=1;i
I am a beginner but your teaching made me to
Accepted this challenge successfuly
Thanks Harry bhai ❤️
Please tell me from where I can get exercises of this video
@@NishaKumari-fy9sv you can message me or can check website of Harry bhai
Challenge accepted i got confusion in why we type a 2 times but by trial and error i understood that thanks fore teaching
# include
int main()
{
int a;
printf("Enter number that you want to multipication table of : ");
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;
}
GALAT H BRO
@@asliprinceraj kar diya sahi
Printf("
accepted");
It was sove using some looping statements.
Without loop how?
Made the program successfully😊😊
#include
int main()
{
int a, i;
printf("Enter the number for table
");
scanf("%d",&a);
i=1;
while (i
Dhtt bsdka..loop.lgara ga
Your knowledge on operators is very sufficient.and i hope tha you will be fine ❤️❤️❤️ and you and your family enjoying your life.
Challenge accepted and completed also😎, Thank you sir for guidance❤👍
How?
Whats your output?
@@Amankumar-ij6dg int main()
{
float a;
printf("Enter The Number :
");
scanf("%f",&a);
printf("Table Of %f
",a);
printf("%f X 1 = %f
",a,a*1);
printf("%f X 2 = %f
",a,a*2);
printf("%f X 3 = %f
",a,a*3);
printf("%f X 4 = %f
",a,a*4);
printf("%f X 5 = %f
",a,a*5);
printf("%f X 6 = %f
",a,a*6);
printf("%f X 7 = %f
",a,a*7);
printf("%f X 8 = %f
",a,a*8);
printf("%f X 9 = %f
",a,a*9);
printf("%f X 10 = %f
",a,a*10);
return 0;
}
Challange accepted
Sir
Thanks for teaching us ❤️❤️❤️
I accept it .
it is too late but I got it . btw thank u soo much bhaiya ,,,,subha Chhath puja #24❤❤
Printf("chalenge accept sir");
4 years ago;
Challenge accepted
🔥🔥🔥🔥🔥
Utilising the lockdown period by learning something new...Challenge Accepted 🔥
same pinch bro you are from which college
Challenge Accepted
Best Programming channel😃😃😃😃😀😁
bhai nhi ho rha please
batao na
Printf('chalange accepted');
Challenge accepted sir🎉🎉🎉
I know I am late but Challenge Accepted .
same
Same
Same
Same
Same challenge accepted
#include
int main()
{
int a=7;
printf("Table of 7 ");
printf("
%d
%d
%d
%d
%d
%d
%d
%d
%d
%d",a*1,
a*2,
a*3,
a*4,
a*5,
a*6,
a*7,
a*8,
a*9,
a*10
);
return 0;
}
Challenge accepted after 4 years
Still your video is helpful
How you solve the problem without using for loop
CHALLENGE ACCEPTED And thanks for teaching us in such a great way...
Challenge accepted
Challenge accepted , i am to late bhaiya😅
Bro 15 hr wali video dekhi bhaiya ki konsi sahi hai
@@ansh2647 bro mere khayaal se playlist is good for noobs like us
@@ash_22_anonymus yup
Main bhi late hu😮
@@jatinbelani5378 me too 😁
Printf("challenge accepts")
Semicolon missing
After 3+ year
Accepted👍
i watched in 2024 Thnk YOu sir very HELP FU;LL
Printf("challenge accept ")
Semicolon is missing 😐
Printf("challenge except"); sir.
Bro do you have solution of this problem if you have then please send me
printf("Challenge %s","accepted");
Challenge accepted and completed..👌💯😉
amazing job you are doing buddy... this is really a great initiative you have made..
Hey excuse me ,help me out where should i get solution of this exercise?
Done with the Exercise.
Me also
provide the code then
Printf("Challege accepted")
bro print mai p small hoga verna error aaega 😅
Semicolon bhi nahi hai
Challenge accepted Harry bhaiya 👍👍👍
#include
int main() {
int num, i;
// Ask the user for the number
printf("Enter a number: ");
scanf("%d", &num);
// Print the multiplication table
printf("Multiplication table for %d:
", num);
for (i = 1; i
Challenge accepted
Thnku sir
Mera program run nhi hua
printf("chellenge accepted");
printf("
meet you agin");
char challenge[10];
challenge = "accepted" ;
printf("%s",challenge);
Compiler Error ;
@@sheikhsahil7335 char challenge[10];
challenge = "accepted" ;
printf("%s",challenge);
@@BGMIHUB_Fun Bro you should declare accepted line on same line without terminate it by semi colon
char challenge [10] = 'accepted';
Otherwise compiler will encounter by error
Challenge accepted sir👍
#include
#include
main()
{
int a, i, n;
a=6;
printf(" Enter a num ":);
scanf("%d",&n);
for(i=1; i
this is correct code
#include
#include
//problem statement - print a multiplication table of a number enterred by user
int main(){
int n , a, i;
printf("enter the number
");
scanf("%d", &n);
for(i=1; i
instead of n=a*1 write a=n*i where n=user number , i = serial no. in loop from 1 to 10 , a =answer of multiplication