Тёмный

C Programming Exercise 1 - Multiplication Tables: C Tutorial In Hindi #8 

CodeWithHarry
Подписаться 7 млн
Просмотров 897 тыс.
50% 1

In this video, I have given you an exercise on Multiplication tables. Solve it in C and I hope you are enjoying this C course in Hindi.
►This C Lecture is a part of this C Programming Course: • C Language Tutorials I...
►Source Code + Notes: codewithharry....
►Click here to subscribe - / @codewithharry
Best Hindi Videos For Learning Programming:
►Learn Python In One Video - • Learn Python In Hindi ...
►Learn JavaScript in One Video - • JavaScript Tutorial
►Learn PHP In One Video - • Learn Php In One Video...
►Machine Learning Using Python - • Machine Learning Tutor...
►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
►Advanced Python Tutorials - • Intermediate/Advanced ...
►Object Oriented Programming In Python - • Object Oriented Progra...
►Python Data Science and Big Data Tutorials - • Python Data Science an...
Follow Me On Social Media
►Website (created using Flask) - www.codewithha...
►Facebook - / codewithharry
►Instagram - / codewithharry
►Personal Facebook A/c - / geekyharis
Twitter - / haris_is_here

Опубликовано:

 

7 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 7 тыс.   
@CodeWithHarry
@CodeWithHarry 5 лет назад
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?
@JobsAddaa
@JobsAddaa 5 лет назад
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
@faizanalam1646
@faizanalam1646 5 лет назад
goooooooddddd
@legueoflegends4506
@legueoflegends4506 5 лет назад
Okay
@AdarshKumar-lf1kf
@AdarshKumar-lf1kf 5 лет назад
Awesome...
@AdarshKumar-lf1kf
@AdarshKumar-lf1kf 5 лет назад
Start givining notes
@vishnupandit4072
@vishnupandit4072 Год назад
Challenge accepted and completed in two different ways; one using for loop and another is beginner's method.
@farhanpathan4167
@farhanpathan4167 Год назад
Bro but Harry bro doesn't say anything about loop
@tryit1719
@tryit1719 Год назад
Heyy bro what is the beginners method
@newsandotherstuff2129
@newsandotherstuff2129 Год назад
​@@tryit1719arithmetically multiplication vala
@dinkisolanki8251
@dinkisolanki8251 11 дней назад
​@@newsandotherstuff2129ek ek line ko multiplication and run kare kya??? I'm not understanding how to do it through beginner's method
@grimsleet
@grimsleet Год назад
Challenge Accepted Sir, Thank You for helping us in understanding C concepts more easily and clearly.
@ojcoder208
@ojcoder208 Месяц назад
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 )
@Ahmed_king777
@Ahmed_king777 2 года назад
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
@leviackerman-rn7xi
@leviackerman-rn7xi Год назад
Galat hai bhai tera
@tusharpal3059
@tusharpal3059 Год назад
@@leviackerman-rn7xi kase galat hai bta
@sampakjha4637
@sampakjha4637 11 месяцев назад
Yh
@gauravkumar4463
@gauravkumar4463 3 часа назад
Do while abhi sikhaya nahi Jitna sikhaaya hai utne se kar
@VIKASHTHAKUR-uf2kf
@VIKASHTHAKUR-uf2kf Год назад
challenge accepted sir you will definitely make us a job ready. Great initiative taken by you for teaching programming to everyone..💯
@varunkolanu
@varunkolanu 2 года назад
I have accepted the challenge And i did it sir. I got a self satisfaction by this.. thank you so much sir🙏🙏
@racks8493
@racks8493 Год назад
Solution video kha hai
@VivekVasava-cz7zk
@VivekVasava-cz7zk 5 месяцев назад
Challenge accepted 🗣
@aspanel
@aspanel 5 лет назад
Sir course is going very well. Not too slow and not too fast it has a medium speed.
@kundan4863
@kundan4863 Год назад
After 3 year I am Accepting this challenging.
@vivekkanzariya2525
@vivekkanzariya2525 Год назад
Same bhai 😅😅
@SHAANATREND1
@SHAANATREND1 Год назад
Same
@kingster6049
@kingster6049 Год назад
Can you help me bro
@kingster6049
@kingster6049 Год назад
@technical india yor insta id ?
@subhamjr7793
@subhamjr7793 Год назад
@pchK3992
@gourabmukherjee9445
@gourabmukherjee9445 Год назад
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 !
@_Mohit123
@_Mohit123 8 месяцев назад
#include int main() { int a; printf("Enter an integer: "); scanf("%d", &n); for (int i = 1; i
@YashiSainiIT175
@YashiSainiIT175 7 месяцев назад
​@@_Mohit123here as you have declared a in int but in the scanf line you used &n so I think there will be an error !
@YashiSainiIT175
@YashiSainiIT175 7 месяцев назад
And the table is to be printed till 10 so loop should run upto 10 but you have given 7 in condition
@majesticlucariogames
@majesticlucariogames 3 месяца назад
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; }
@asliprinceraj
@asliprinceraj 4 дня назад
GALAT H BRO
@majesticlucariogames
@majesticlucariogames 4 дня назад
@@asliprinceraj kar diya sahi
@FKNEngineerYT
@FKNEngineerYT Год назад
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!
@justforlearning4014
@justforlearning4014 Год назад
Same here bruh. I was writing printf("a×1=%d",a×1)
@zenitsu2989
@zenitsu2989 3 года назад
Even after 2 years these videos are very very usefull. thank you!
@mrnavdip9560
@mrnavdip9560 2 года назад
I'm watching this video 2 year a go of uploaded , I don't believe your word😱😱
@abhishekmina4913
@abhishekmina4913 3 года назад
Challenge accepted Harry ... I'll make sure that I complete this tutorial ASAP! I hope you will help me throughout this course
@hu-tv
@hu-tv Месяц назад
# include /* print a multiplication table of a number entered by user in preety form Example : enter the number you want multiplacation of: 6 output: Table of 6 6 x 1 = 6 6 x 2 = 12 . . . 6 x 10 = 60 */ int main() { int a ; printf("Enter a number you want multiplication 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; } -------------- PS D:\Sauce\code> cd "d:\Sauce\code\" ; if ($?) { gcc tutorial8-ex1.c -o tutorial8-ex1 } ; if ($?) { .\tutorial8-ex1 } Enter a number you want multiplication of: 6 6 x 1 = 6 6 x 2 = 12 6 x 3 = 18 6 x 4 = 24 6 x 5 = 30 6 x 6 = 36 6 x 7 = 42 6 x 8 = 48 6 x 9 = 54 6 x 10 = 60
@vision_mile
@vision_mile 4 года назад
challenge accepted sir you will definitely make us a job ready. Great initiative taken by you for teaching programming to everyone
@sarthakmahajan401
@sarthakmahajan401 2 года назад
Think Giving Job to someone ...
@arjux4724
@arjux4724 Год назад
bro you got any job?????
@souravverma4768
@souravverma4768 2 года назад
challenge accepted i hope i complete this challenge ASAP! you are such a great teacher sir.
@Nikhil-qd2qg
@Nikhil-qd2qg 2 месяца назад
Made the program successfully😊😊
@rajdeepmaulik4489
@rajdeepmaulik4489 3 года назад
challenge accepted and thanks a lot for teaching in such a good manner so that these questions seems so easy to a beginer.
@akashaswar1579
@akashaswar1579 2 года назад
Challenge accepted after completing😁😁 Thank you for these type of teaching I cant believe that i develop that program by myself😃😃
@mehulkumar2754
@mehulkumar2754 2 года назад
Please send the code you wrote for this program
@SoulOP7
@SoulOP7 2 года назад
@@mehulkumar2754 COPY PASTING WONT LET U LEARN
@suratgaming5462
@suratgaming5462 2 года назад
@ViLen it's easy just ask no then print a*1 a*2 like this it's easy
@jaykumarjatav9312
@jaykumarjatav9312 Год назад
Even after 3 years of this video it very amazing
@shinchan6969
@shinchan6969 Год назад
Jaynendra😳
@lorddayyyy
@lorddayyyy Год назад
Jayendra!!!! 😳😳
@bibekgupta8864
@bibekgupta8864 4 года назад
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
@iqrashafi9710
@iqrashafi9710 4 года назад
ap ka out put show ho raha hai plz reply me
@jaibharatmata8921
@jaibharatmata8921 4 года назад
@@iqrashafi9710 printf(" %d " +6*1); printf(" %d " +6*2); . . . printf(" %d" +6*10); Without loop
@iqrashafi9710
@iqrashafi9710 4 года назад
@@jaibharatmata8921 thanks
@jaibharatmata8921
@jaibharatmata8921 4 года назад
@@iqrashafi9710 your welcome dear friends
@bonggamerkousik5006
@bonggamerkousik5006 5 месяцев назад
​@@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; }
@sayalikatkar9205
@sayalikatkar9205 4 года назад
Challege accepted...actually I have little idea about while loop..hence I solved this problem using loop
@maheenrizwan976
@maheenrizwan976 4 года назад
can you please tell how you did it?
@amanbisht4286
@amanbisht4286 3 года назад
Can u tell me how u did this?
@vivekanandyadav1609
@vivekanandyadav1609 3 года назад
Challenge accepted Dil SE thank you bhaiya ❤️❤️❤️
@harshadapatil1512
@harshadapatil1512 Год назад
Your teaching level don't have any comparison❤
@coder_chandan
@coder_chandan 3 года назад
"Challenge accepted " and Thank you so much sir to make me understood
@movies_channell
@movies_channell 2 года назад
I did it .......... 😊
@modiji9691
@modiji9691 2 года назад
@@movies_channell how?
@anuvedsolanki9192
@anuvedsolanki9192 21 день назад
Accepted and done ✅
@dank5088
@dank5088 2 года назад
I accept challenge after 2 years . Quality and knowledge of video is much better than college teachers . Aise teacher chahiye muze mere college me 🥺🥺
@magxbeats
@magxbeats 2 года назад
True bro our programming teacher suckssss
@darshanrathod8532
@darshanrathod8532 2 года назад
challange accepted and completed as well. thank you harry bhai
@_ParinitaMondal
@_ParinitaMondal 2 года назад
Challenge accepted and done 👍 .... You are teaching very nice sir, it's neither too fast nor too slow.
@kartikkumarsingh3756
@kartikkumarsingh3756 Год назад
can you send me the code of this exercise
@gxanshu
@gxanshu 4 года назад
any one in market does not want to teach me programming because i am in 9 stranded by your playlist help me so much
@aryashahi9336
@aryashahi9336 4 года назад
hume to 2nd year m bhi nhi aya *-*
@Jack-mc7qe
@Jack-mc7qe 3 года назад
@@aryashahi9336 haha ye doodh peete bacho ko pta nhi kya hi chul hai
@mohammadaman2676
@mohammadaman2676 3 года назад
Same now i am in 10
@NiteshSingla-yw7oh
@NiteshSingla-yw7oh 3 дня назад
# include int main() { int a; printf("Enter number = "); scanf("%d", &a); for (int i = 1; i
@Abhishek-cw6id
@Abhishek-cw6id 4 года назад
challenge accepted ✌️👍 you are soo great teacher sir 🤗🤗❣️😌
@ajitpawar3076
@ajitpawar3076 3 года назад
wheres the ans
@ajitpawar3076
@ajitpawar3076 3 года назад
code
@abhinavpawar2893
@abhinavpawar2893 3 года назад
Exersise completed thank you harry sir for explaining us
@HACKINGWORLD2.0
@HACKINGWORLD2.0 2 года назад
bhai kya kiya isme aapne
@arminarlet2138
@arminarlet2138 2 года назад
@@HACKINGWORLD2.0 ye bina loop ke hoo skta hai???
@dkgamer2.o331
@dkgamer2.o331 7 месяцев назад
sir you are opp me apke video se bhot sikhta hu and aap bhot simple way me sikhate ho and challenge accepted
@shyammeena608
@shyammeena608 3 года назад
challange accepted as well as completed........thanks for your playlist
@srishtiaggarwal2749
@srishtiaggarwal2749 3 месяца назад
but how i can't can you share the code please
@karansolav7275
@karansolav7275 2 года назад
challenge accepted!😇 now learn C language after using C in one video course. it's was awesome.
@sachingoyal3796
@sachingoyal3796 2 года назад
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
@salik_khan01
@salik_khan01 5 месяцев назад
Challenge accepted!! Harry bhai ❤️
@divyarajmakwana6211
@divyarajmakwana6211 3 года назад
Challenge accepted and completed in 8 mins.
@shivamshrikhande2013
@shivamshrikhande2013 2 года назад
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....
@darshan8175
@darshan8175 Год назад
#include int main() { int a, i; printf("Enter the number for table "); scanf("%d",&a); i=1; while (i
@arnavrajput5963
@arnavrajput5963 Год назад
Dhtt bsdka..loop.lgara ga
@Aspirants_29
@Aspirants_29 10 месяцев назад
#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; }
@abhijeet8290
@abhijeet8290 4 года назад
#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
@AryanGupta-gg7ml
@AryanGupta-gg7ml 2 года назад
wrong
@saachigupta4545
@saachigupta4545 2 года назад
CHALLENGE ACCEPTED and thank u so sir for helping us i have written the code without any help
@faizakhtar5329
@faizakhtar5329 2 года назад
2:15 Harry set keyboard on fire 😂😂🔥🔥
@defencegk6708
@defencegk6708 10 месяцев назад
Challenge accepted sir🎉🎉🎉
@Ramakantsharma12345
@Ramakantsharma12345 2 года назад
Your knowledge on operators is very sufficient.and i hope tha you will be fine ❤️❤️❤️ and you and your family enjoying your life.
@jadavkhushi7838
@jadavkhushi7838 2 года назад
Challenge accepted sir 👍 you doing very good work .thank you so much to give the brief information.
@racks8493
@racks8493 Год назад
Solution video kha hai?
@ksipra4884
@ksipra4884 3 года назад
Challenge accepted and completed🥳. Thank u sir 🙏
@adv.rohan_parihar
@adv.rohan_parihar 3 года назад
"challenge accepted" and thank you for teaching everyone
@krunaliganvir7658
@krunaliganvir7658 3 года назад
Hello I'm not getting it can uh please explain ?
@usjvlogs9155
@usjvlogs9155 10 месяцев назад
challenge accepted and completed, here is the proof .. thanks for giving such challenge. #include int main() { int a; printf("Enter the no. you want multiplication table of :-\t"); scanf("%d",&a); for(int i=1;i
@sayali7367
@sayali7367 4 года назад
Challenge accepted Thnku sir
@royalfilm5754
@royalfilm5754 4 года назад
Mera program run nhi hua
@DivyanshuPrakashOfficial
@DivyanshuPrakashOfficial Год назад
Challege accepted 🤝 And thank you so much bhaiya for this marvelous playlist🤗❤️
@poorvishrivas0767
@poorvishrivas0767 4 года назад
Printf("challenge accepted ") ;
@bhb037
@bhb037 3 года назад
😂😂
@sanjaysoni-hh3xd
@sanjaysoni-hh3xd 3 года назад
madam printf ka P small hoga nhi to error aayega
@shouryasharma9494
@shouryasharma9494 3 года назад
@@sanjaysoni-hh3xd Yes it is giving error
@memelover8320
@memelover8320 Год назад
​@@sanjaysoni-hh3xd😂😂 correct
@ananyachandrakar3910
@ananyachandrakar3910 3 года назад
challenge accepted harry sir!😊 as well as completed! thank you so much🙏
@aryavluna9184
@aryavluna9184 3 года назад
How plz tell
@Utsav_D_Yadav
@Utsav_D_Yadav 4 года назад
Printf("chalenge accept sir");
@sakshisaini5316
@sakshisaini5316 7 месяцев назад
Challenge accepted master Harry 😊
@Vaidyacomedyclub
@Vaidyacomedyclub 7 месяцев назад
Kya tum bhi 😅 abhi start kiye ho c agar yes to reply Karo mere paas c ka bahut sara source code hain 😅
@SUMITSHARMA-sy6uf
@SUMITSHARMA-sy6uf 2 года назад
I am actually 3 years late, but your challenge is accepted.
@ApoorvJainofficial
@ApoorvJainofficial Год назад
I am a beginner but your teaching made me to Accepted this challenge successfuly Thanks Harry bhai ❤️
@NishaKumari-fy9sv
@NishaKumari-fy9sv Год назад
Please tell me from where I can get exercises of this video
@ApoorvJainofficial
@ApoorvJainofficial Год назад
@@NishaKumari-fy9sv you can message me or can check website of Harry bhai
@computer_tech98
@computer_tech98 Год назад
//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
@kanakkhobragade7238
@kanakkhobragade7238 Год назад
Brother me beginner hu aur mujhse ye nahi hua💀
@user-ik1cy8cq3k
@user-ik1cy8cq3k Год назад
@@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
@pythonkrishna290
@pythonkrishna290 Год назад
@@user-ik1cy8cq3k 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; }
@bakihanma5639
@bakihanma5639 Год назад
@@user-ik1cy8cq3k 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
@abdulkayum886
@abdulkayum886 4 года назад
printf("challange accepted");
@yuvrajpreet6531
@yuvrajpreet6531 2 года назад
Don't know if the challenge is still on 😂 But yeah... Challenge Accepted ✌️
@Wday100
@Wday100 2 года назад
same here
@_memes_for_you_
@_memes_for_you_ 4 года назад
Phley Aaye hote meri zindgi me to kafi waqt bachta❤️😌😌😌✌️💙
@manshidubeydubey5466
@manshidubeydubey5466 7 месяцев назад
Challenge excepted sir😊
@pshobha7783
@pshobha7783 5 лет назад
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
@pratikn2790
@pratikn2790 2 года назад
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
@ananyagirish02
@ananyagirish02 2 года назад
could u pls explain how did u write the last print statement ...6*%d=%d,i,mul ?
@saadansaria659
@saadansaria659 2 года назад
For loop to padhaya hi nhi abhi tk 🙄
@ganeshkathar5817
@ganeshkathar5817 4 года назад
Printf(" accepted"); It was sove using some looping statements.
@amanbisht4286
@amanbisht4286 3 года назад
Without loop how?
@nahiarabeer9565
@nahiarabeer9565 3 года назад
Challenge accepted 🔥🔥🔥🔥🔥
@Gokul_kanpuriya
@Gokul_kanpuriya 3 года назад
Printf('chalange accepted');
@himanshuraiji8767
@himanshuraiji8767 11 месяцев назад
Challenge accepted and completed sir 👍
@hordeepgahlyan6163
@hordeepgahlyan6163 6 месяцев назад
Sir the code is as follows Note : sir as you have not taught us the loop conditional I am using this approach: #include int main() { int a; printf("Enter any number for its multiplication table from 1 to 10 "); scanf("%d", &a); printf("The table of the number %d is: ", 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; } Output: Enter any number for its multiplication table from 1 to 10 2 The table of the number 2 is: 2 x 1 = 2 2 x 2 = 4 2 x 3 = 6 2 x 4 = 8 2 x 5 = 10 2 x 6 = 12 2 x 7 = 14 2 x 8 = 16 2 x 9 = 18 2 x 10 = 20
@shreyaskulkarni9345
@shreyaskulkarni9345 2 месяца назад
in this %d tells us that the data type is of integer. It does not store value of 2, it is stored in a.. so how come "%d x 1" shows 2 x 1??
@palakchainani343
@palakchainani343 11 дней назад
@@shreyaskulkarni9345 same doubt, did you find the correct reason?
@Cute_love367
@Cute_love367 2 месяца назад
Now I accepted your challenge and I do the correct coding you check the code😊😊 #include int main() { int a,i; printf ("Enter any number="); scanf("%d",&a); for(i=1;i
@altafshaikh665
@altafshaikh665 Год назад
After 3+ year Accepted👍
@sahilbhilare8536
@sahilbhilare8536 3 года назад
Challenge accepted and completed also😎, Thank you sir for guidance❤👍
@Amankumar-ij6dg
@Amankumar-ij6dg 3 года назад
How? Whats your output?
@yashparab9874
@yashparab9874 2 года назад
@@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; }
@sabreen5969
@sabreen5969 5 дней назад
Challange accepted and I did it sir after some trial and errors .
@priyanshverma3161
@priyanshverma3161 2 дня назад
share ur code pls...
@mananbatra3274
@mananbatra3274 2 года назад
CHALLENGE ACCEPTED And thanks for teaching us in such a great way...
@agrajsingh4705
@agrajsingh4705 2 года назад
Challenge accepted
@ARgaming-J
@ARgaming-J Год назад
Challenge accepted after 4 years Still your video is helpful
@glitchbotgaming1592
@glitchbotgaming1592 9 месяцев назад
How you solve the problem without using for loop
@VIKASHTHAKUR-uf2kf
@VIKASHTHAKUR-uf2kf Год назад
//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.
@isroofficial2416
@isroofficial2416 Год назад
great brother👍👍 your code is right
@SriduttLanka
@SriduttLanka Год назад
Thanks man, i was wondering as to how to use that %d ting. Got it now. Thanks buddy
@jinendra0825
@jinendra0825 9 месяцев назад
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
@tanmaynagdeve5719
@tanmaynagdeve5719 5 лет назад
Done with the Exercise.
@therealfight1168
@therealfight1168 4 года назад
Me also
@ZecTox
@ZecTox 3 года назад
provide the code then
@uttkarshraj8938
@uttkarshraj8938 3 года назад
Challenge accepted , i am to late bhaiya😅
@ansh2647
@ansh2647 3 года назад
Bro 15 hr wali video dekhi bhaiya ki konsi sahi hai
@ash_22_anonymus
@ash_22_anonymus 3 года назад
@@ansh2647 bro mere khayaal se playlist is good for noobs like us
@kunjsutariya283
@kunjsutariya283 3 года назад
@@ash_22_anonymus yup
@jatinbelani5378
@jatinbelani5378 3 года назад
Main bhi late hu😮
@shubhamkumarsharma1568
@shubhamkumarsharma1568 3 года назад
@@jatinbelani5378 me too 😁
@030-sham
@030-sham 3 года назад
Printf("challenge accepts")
@archanadandge122
@archanadandge122 3 года назад
Semicolon missing
@anirudhpurohit7844
@anirudhpurohit7844 3 года назад
Challange accepted Sir Thanks for teaching us ❤️❤️❤️
@rajukumarsah4738
@rajukumarsah4738 3 года назад
Printf("challenge except"); sir.
@unrealasmr3881
@unrealasmr3881 3 года назад
Bro do you have solution of this problem if you have then please send me
@prernapandey1272
@prernapandey1272 5 лет назад
amazing job you are doing buddy... this is really a great initiative you have made..
@abhisheksaini-jj8ug
@abhisheksaini-jj8ug 3 года назад
Hey excuse me ,help me out where should i get solution of this exercise?
@jinendra0825
@jinendra0825 9 месяцев назад
#include int main () { int a = 6; int b =0 ; { printf("Table of %d is ", a); } for(int i=1 ; i
@rohanberi9717
@rohanberi9717 3 года назад
Utilising the lockdown period by learning something new...Challenge Accepted 🔥
@prabhatsingh9512
@prabhatsingh9512 3 года назад
same pinch bro you are from which college
@chillbro847
@chillbro847 4 года назад
Printf("challenge accept ")
@Swayamshree4
@Swayamshree4 16 часов назад
Semicolon is missing 😐
@ShivamNox
@ShivamNox 3 года назад
"Challenge accepted" and completed
@rutvijjain6831
@rutvijjain6831 3 года назад
Ok
@gopalchandrapramanik4856
@gopalchandrapramanik4856 4 года назад
printf("Challenge %s","accepted");
@AmanKumar-ti6be
@AmanKumar-ti6be 11 месяцев назад
Challenge accepted
@myeducation3496
@myeducation3496 11 месяцев назад
#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
@hitarthraval6082
@hitarthraval6082 4 месяца назад
challenge accepted
@RaviKumar62025
@RaviKumar62025 3 года назад
Printf("Challege accepted")
@yuktiagarwal9261
@yuktiagarwal9261 3 года назад
bro print mai p small hoga verna error aaega 😅
@sigmarule4043
@sigmarule4043 3 года назад
Semicolon bhi nahi hai
@RupamDutta-l5q
@RupamDutta-l5q Месяц назад
challlenge accepted and solved
@nahiarabeer9565
@nahiarabeer9565 3 года назад
# include int main() { printf("Challange accepted ") printf("Love u from Bangladesh ") return 0 ; }
@rajmangaltiwary9879
@rajmangaltiwary9879 3 года назад
Bhai solutions hi likh de Help ho jayegi ham jaise bachho ki Iski jagah
@rgcomedyvines5308
@rgcomedyvines5308 2 года назад
Such me yrr
@adityarajkumawat1015
@adityarajkumawat1015 5 лет назад
Challenge Accepted Best Programming channel😃😃😃😃😀😁
@vishalbairagi3937
@vishalbairagi3937 4 года назад
bhai nhi ho rha please batao na
@430_rudrachauhan6
@430_rudrachauhan6 4 года назад
sir ye exercise apne visul studio code me likho please muje nahi ata
@VivekVerma-ft3jg
@VivekVerma-ft3jg 6 месяцев назад
Challenge accepted Harry Bhai 🎉🎉🎉🎉🎉🎉😊😊😊
@12_vibhutimendapara17
@12_vibhutimendapara17 3 года назад
printf("chellenge accepted"); printf(" meet you agin");
@vipulmittal9902
@vipulmittal9902 3 года назад
printf("CHALLENGE EXPECTED");
@kailashahir4413
@kailashahir4413 3 года назад
Not Expected, Accepted hota hai
Далее
Operators In C: C Tutorial In Hindi #7
28:38
Просмотров 1,5 млн
Сказала дочке НЕТ!
00:24
Просмотров 1,1 млн
ПРИКОЛЫ НАД БРАТОМ #shorts
00:23
Просмотров 3,4 млн
Which Operating System I use and Why 💻
14:57
Просмотров 128 тыс.
Men Vs Women Survive The Wilderness For $500,000
31:48
Сказала дочке НЕТ!
00:24
Просмотров 1,1 млн