For, While and do-while loops in C++ | C++ Tutorials for Beginners #10

  Рет қаралды 1,118,921

CodeWithHarry

CodeWithHarry

Күн бұрын

Download the best IDE for C, C# and C++: bit.ly/WholeTo...
►Source Code & Resources: codewithharry....
►This video is a part of my C++ playlist: • C++ Tutorials In Hindi
►For Doubt Solving, Brain Storming Sessions & guaranteed replies, join the channel membership here: / @codewithharry
►Click here to subscribe - / @codewithharry
►Checkout my English channel here: / programmingwithharry
Best Hindi Videos For Learning Programming:
►Learn Python In One Video - • Python Tutorial In Hin...
►Python Complete Course In Hindi - • Python Tutorials For A...
►C Language Complete Course In Hindi -
• C Language Tutorials I...
►JavaScript Complete Course In Hindi -
• JavaScript Tutorials I...
►Learn JavaScript in One Video - • JavaScript Tutorial
►Learn PHP In One Video - • Learn Php In One Video...
►Django Complete Course In Hindi -
• Python Django Tutorial...
►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.codewithhar...
►Facebook - / codewithharry
►Instagram - / codewithharry
►Personal Facebook A/c - / geekyharis
Twitter - / haris_is_here

Пікірлер: 6 600
@elsptrue1electrical
@elsptrue1electrical 9 ай бұрын
#include using namespace std; int main(){ int a=6; int i=1; do{ cout
@Indians_grandfather
@Indians_grandfather 6 ай бұрын
💯
@ajaykushwaha3303
@ajaykushwaha3303 5 ай бұрын
Accept
@deathyt445
@deathyt445 5 ай бұрын
👌💀
@Vikash7729-l8o
@Vikash7729-l8o 3 ай бұрын
//see the magic in the form of 6 table #include using namespace std; int main () { int a= 6, i=0, b ; do { cout
@saikrishnareddy2403
@saikrishnareddy2403 Жыл бұрын
For any number, the program for multiplication table include using namespace std; int main() { int i; int n; cout
@shaurya2667
@shaurya2667 Жыл бұрын
i did in small area same thing - #include using namespace std; int main() { long long int value ; cout > value; int b = 1; while (b
@shivanksharma9956
@shivanksharma9956 Жыл бұрын
Glt h bhai
@yaadeincollegeki
@yaadeincollegeki Жыл бұрын
@@shivanksharma9956 write to hai @shivank sharma
@adeshvaishya3674
@adeshvaishya3674 8 ай бұрын
Pr sir ne to do while loop ka prayog krke tables likhne ko kha tha
@skachade
@skachade 6 ай бұрын
wrong ans aayega
@a-20-vikas_boarde.26
@a-20-vikas_boarde.26 Жыл бұрын
code for six table: #include using namespace std; int main(){ // 6 table int i=6; do{ cout
@Bukhari426
@Bukhari426 6 ай бұрын
Yar ya sahi ha code
@SachinKumar-x6s3e
@SachinKumar-x6s3e 6 ай бұрын
Yes bro ❤
@SachinKumar-x6s3e
@SachinKumar-x6s3e 6 ай бұрын
This is my coding #include Using namespace std; int main(){ int i=6; while (i
@SachinKumar-x6s3e
@SachinKumar-x6s3e 6 ай бұрын
Hello
@Bukhari426
@Bukhari426 6 ай бұрын
@@SachinKumar-x6s3e Yes bro I know your talent 😉
@umesh.7235
@umesh.7235 9 ай бұрын
You are the best 💚💚. I am a beginner and i did it in first try😊😊: #include using namespace std; int main(){ int num=6,multiplier=1; do { cout
@SumitthBlue
@SumitthBlue 4 ай бұрын
I also do in 1st try
@viplovekaithwas5816
@viplovekaithwas5816 2 жыл бұрын
Here is the code for any table using while loop: #include using namespace std; int main() { int a; couta; int i=1; while(i
@yashasvipandey916
@yashasvipandey916 2 жыл бұрын
thanku
@spdevile9690
@spdevile9690 3 жыл бұрын
Super fun to do that # include Using namespace std; Int main(){ //For Loop Int n =6; for( int i=1; i
@harshdiwase3231
@harshdiwase3231 3 жыл бұрын
Bro are you begineer or intermediate?
@siddharthshah8609
@siddharthshah8609 2 жыл бұрын
Awesome bro. All are correct.
@vanshtickoo1341
@vanshtickoo1341 2 жыл бұрын
for wale me int n define karne ki zaroorat nahi hai, seedhe cout
@pranavmaniyar9901
@pranavmaniyar9901 2 жыл бұрын
@@vanshtickoo1341 vo to while loop mein bhi nahi zaroorat firr , right?
@karandeepsingh2125
@karandeepsingh2125 2 жыл бұрын
@@vanshtickoo1341 maine bhi aise hi kra bro
@gSquare67
@gSquare67 Жыл бұрын
using for loop.table of 6 #include using namespace std; int main(){ for (int i = 1; i
@Messi-cx6dw
@Messi-cx6dw 7 ай бұрын
false
@gSquare67
@gSquare67 7 ай бұрын
@@Messi-cx6dw how
@Messi-cx6dw
@Messi-cx6dw 7 ай бұрын
#include using namespace std; int main(){ int t =6; for(int i =1; i
@arandomyoutubewatcher4308
@arandomyoutubewatcher4308 5 ай бұрын
using namespace std; int main(){ cout
@Vikash7729-l8o
@Vikash7729-l8o 3 ай бұрын
#include using namespace std; int main () { int a, i=0, b ; cout
@Gamer-dy1bn
@Gamer-dy1bn 2 ай бұрын
#include using namespace std; int main() { int i=23; int j=1; while(j
@yptechtips2420
@yptechtips2420 Жыл бұрын
Challenge accepted 👍 #include using namespace std; int main(){ //This will print the table of six; int i = 6; do{ cout
@shreyanshsurana100
@shreyanshsurana100 9 ай бұрын
table of 6 #include using namespace std; int main() { int i = 6; do { cout
@tusharpatil9138
@tusharpatil9138 4 жыл бұрын
Challenge accepted #include using namespace std; int main() { for(int i=1; i
@ayushdhakad4921
@ayushdhakad4921 3 жыл бұрын
Challenge Accepted
@iamyuvraj9359
@iamyuvraj9359 3 жыл бұрын
Int main() ka last mai curly bracket nhi lgaya aapne Aur shyd se "i
@uveshshaikh2040
@uveshshaikh2040 3 жыл бұрын
error
@samarjeet4967
@samarjeet4967 3 жыл бұрын
@@RahulKumar-no2ks bhai phele tum dekho 😂😂 usne to sahi likha h
@RahulKumar-no2ks
@RahulKumar-no2ks 3 жыл бұрын
@@samarjeet4967its Was Not Me Bro.. A Fucking Boy Has done this😂😂
@SamarthChawlaSam
@SamarthChawlaSam 2 ай бұрын
19:17 Challenge accepted. #include using namespace std; int main(){ int i=6; do { cout
@__ajaymath6585
@__ajaymath6585 Жыл бұрын
challenged accepted sir int i=1; do{ cout
@_Baest
@_Baest Жыл бұрын
Bhai mene bhi same code dala he mera error aa rha he 😢
@kirtidayasahu1273
@kirtidayasahu1273 Жыл бұрын
use( ; ) in the last line
@nishankkose
@nishankkose 2 жыл бұрын
Challenge Accepted:- The Code for the Given Challenge is:- #include #include #include using namespace std; int main() { int n; cout
@AhmadKhan-nf4ej
@AhmadKhan-nf4ej Жыл бұрын
bhai apko pehle hi ati ha coding ye sab kuch to abhi harry ne sikhaya hi ni jo ap ne kiya
@shaileshsharma5690
@shaileshsharma5690 Жыл бұрын
Thanks bro
@soniverma4927
@soniverma4927 Жыл бұрын
Sir mera code ye the #include Using namespace std; Int main(){ cout
@AhmadKhan-nf4ej
@AhmadKhan-nf4ej Жыл бұрын
@@blasty_.0 bhai while ma condition change krdo jitni bar bhi chalana chahtay ho
@yashwanthyash8303
@yashwanthyash8303 Жыл бұрын
@@soniverma4927you will get error
@AnjaliKumari-tu2iz
@AnjaliKumari-tu2iz 2 жыл бұрын
# include Using namespace std; Int main(){ Cout
@madhurjoshi1808
@madhurjoshi1808 2 жыл бұрын
You have not used d while..instead you have used For.
@adamali785
@adamali785 Ай бұрын
Table of SIX using do-while loop : #include using namespace std; int main (){ int i = 1; do { cout
@pulastyabhagwat7774
@pulastyabhagwat7774 Жыл бұрын
Challenge accepted and Completed Successfully. Sir you are really great teacher, Before I started learning coding from you I used to find it boring but now I have started to enjoy it!!!!😊😊😊
@motivationalTalks810
@motivationalTalks810 Жыл бұрын
Challenge accepted bhaiya ji The code for the given Challenge is:- #include using namespace std; int main(){ int a; cout
@gkwithrk4940
@gkwithrk4940 Жыл бұрын
a*i hoga bhai please correct this
@gtaburn7397
@gtaburn7397 Жыл бұрын
do while sai bola tha
@surprise3740
@surprise3740 Жыл бұрын
@@gkwithrk4940 shi hai
@gkwithrk4940
@gkwithrk4940 Жыл бұрын
@@surprise3740 ha output to thik ayega tumhara code se but a*i se format shi ho jayega
@abhishektiwari6141
@abhishektiwari6141 Жыл бұрын
i wrote only for table of 6 but now by seing your code i got idea about using it to apply to many different fields
@amaraqureshi2099
@amaraqureshi2099 3 жыл бұрын
Harry Bhai kindly nested loop ko explain kr dain in c++. Insahllah soon you will get 1 million subscriber. love from Pakistan.
@subhu143
@subhu143 3 жыл бұрын
♥🔥
@syedfasiuddin7621
@syedfasiuddin7621 5 ай бұрын
Now he has almost 6 million subscribers 😍
@Artificial_Intelligence_Learnr
@Artificial_Intelligence_Learnr 2 ай бұрын
also with for loop : int a = 6; for (int i = 1; i
@khizrshaikh9902
@khizrshaikh9902 3 жыл бұрын
18:38 Challenge Accepted! 19:07 // Quick Quiz: write a multiplication table using do-while loop // Quick Quiz Solution: int i = 1; int multiplicationNumber = 6; do { cout
@adityaraj-zm7zk
@adityaraj-zm7zk 3 жыл бұрын
Challenge accepted sir
@amazonhaikya5700
@amazonhaikya5700 2 жыл бұрын
This Code is not the real solution this code gives us value till 66 because it's do while loop when condition comes i=11 it is false in our given condition but it atleast run once.
@DrBond003
@DrBond003 2 жыл бұрын
int i=1; do{ cout
@kasoni4848
@kasoni4848 2 жыл бұрын
Return 0; } Thnxx
@shivansharma1310
@shivansharma1310 4 жыл бұрын
#include using namespace std; int main() { int i=6; while(i
@Face_the_Reality
@Face_the_Reality 2 жыл бұрын
#include using namespace std; int main(){ for(int i = 1; i
@StudentLinker
@StudentLinker 2 жыл бұрын
Swep kya hain bhai ?
@StudentLinker
@StudentLinker 2 жыл бұрын
And bhai ap kon se year main ho collage ke
@Face_the_Reality
@Face_the_Reality 2 жыл бұрын
@@StudentLinker I don’t know And I have just passed 12th. I did not choose computer in 9th and 11th. Therefore, I haven’t much knowledge about it. I am just learning it because I am interested in it
@StudentLinker
@StudentLinker 2 жыл бұрын
@@Face_the_Reality same here brother
@Face_the_Reality
@Face_the_Reality 2 жыл бұрын
@@StudentLinker oh really Good luck 👍
@PragyaSingh-of8zr
@PragyaSingh-of8zr 4 ай бұрын
for multiplication table of 6 or any other number: #include using namespace std; int main(){ int n, i; coutn; for (i=1; i
@tanmaykarn
@tanmaykarn 2 жыл бұрын
Thanks bhaiya.. done with multiplication table of 6 till 10 times. Code given below: For Loop: // int i; // for (i=6; i
@rajneeshgupta330
@rajneeshgupta330 2 жыл бұрын
Bhai sirf Do while use Krna tha
@aman.saklanii
@aman.saklanii 8 ай бұрын
le printing all tables using all type of loops :: #include using namespace std; // priting multiplication table using all loops ; int main() { int a, i = 1; cout a; cout
@Tellers_Of_Tales
@Tellers_Of_Tales 8 ай бұрын
thanks for the code had some difficulty understand this thanks for using all types of loops
@sufiyanmogal1527
@sufiyanmogal1527 2 жыл бұрын
Challenge Completed 👍 Printing the table of 6 using do while loop #include using namespace std; int main(){ // Printing Table of 6 using do while loop int i = 1; do{ cout
@Studywithconsistentcy
@Studywithconsistentcy 3 ай бұрын
Table of 6 is: #include using namespace std; int main(){ int a = 6; int i = 1; do{ cout
@NewbieValorantYT
@NewbieValorantYT 2 жыл бұрын
Challenge accepted and completed sir. You are one of the best educators I have even seen, Thank you so much for all your efforts . Please keep making such wonderful content sir.
@kumarkundan5606
@kumarkundan5606 3 жыл бұрын
Challenge accepted & completed also using all the 3 loops, YOUR TEACHING is just so good, I'm just a beginner & I'm understanding each & every code so well.
@Shinchan-qr6qw
@Shinchan-qr6qw 2 жыл бұрын
*PROGRAM TO PRINT AN INFINITE TABLE OF ANY NUMBER ENTERED BY USER* #include using namespace std; int main() { cout
@kalpnabelwanshi9567
@kalpnabelwanshi9567 2 жыл бұрын
Agr infinite loop m fas gye or mujhe pta nhi tha ctrl+c se stop ho jata h tho mne vs code ki window ko hi close kar diya tho kuch problem tho nhi hogi na, mne code vha se bhi delete kar diya jha ye vs code ki file save hoti h
@gamingandtechexperto2003
@gamingandtechexperto2003 8 ай бұрын
challenge accepted and challenge done within 10 minutes #include using namespace std; int main() { int a = 6, b = 1 ; do{ cout
@gametech91
@gametech91 2 ай бұрын
1. // The table of any number you enter 2. #include 3. using namespace std; 4. int main(){ 5. int n; 6. cout
@jawadshakeel9475
@jawadshakeel9475 2 жыл бұрын
Challenge done after 2 years 😂 By the way, love you sir! I have just started my CS degree and I wasn't able to understand loops from anyone and its just you who made it possible.
@uzairkhan7413
@uzairkhan7413 Жыл бұрын
same scenes yaar I didn't understand anything in university
@mtkbeatz6197
@mtkbeatz6197 Жыл бұрын
same buddy
@mohaiman0175
@mohaiman0175 Жыл бұрын
@@casper33333 fast University to nhi parhty ? 😂
@casper33333
@casper33333 Жыл бұрын
@@mohaiman0175 naa yar GU men hun
@satya350
@satya350 Жыл бұрын
Private??
@devgupta1217
@devgupta1217 2 жыл бұрын
Challenge accepted and done with all the 3 loops. Thanks sir💖
@ranveerjadhav928
@ranveerjadhav928 Жыл бұрын
challange accepted: FOR ALL 3 LOOPS #include using namespace std; int main() { /* TYPE OF LOOPS: TERE ARE 3 TYPE OF LOOP 1.FOR LOOP 2.WHILE LOOP 3.DO-WHILE LOOP */ // int i=1; // cout
@saadcraftycreation
@saadcraftycreation Жыл бұрын
it does not work
@ranveerjadhav928
@ranveerjadhav928 Жыл бұрын
@@saadcraftycreation remove comment and try On my pc they all run successfully
@playwithsammm
@playwithsammm Жыл бұрын
@@ranveerjadhav928 bro tune galat likha hai :)
@saadcraftycreation
@saadcraftycreation Жыл бұрын
@@playwithsammm YEAH
@AsifNawaz-oj9nd
@AsifNawaz-oj9nd 2 ай бұрын
Thanks bro
@sakinajaweria7255
@sakinajaweria7255 2 ай бұрын
#include Using namespace std; Int main(); Int i= 6; do{ Cout i++60; } While( i
@nirmalsugandhi5528
@nirmalsugandhi5528 Жыл бұрын
Challenge Accepted 👍👍 #include using namespace std; int main () { int i = 1; do { cout
@naveen0005.
@naveen0005. Жыл бұрын
Wrong code h bro Cout
@TheHacksNation
@TheHacksNation 4 жыл бұрын
#include using namespace std; int main() { int i=1; 1. FOR LOOP for(i=0;i
@sagarsingh2011
@sagarsingh2011 2 жыл бұрын
in for loop put i in place of 1
@shimmerangle7836
@shimmerangle7836 2 жыл бұрын
Thankyou
@deeplekhwani9706
@deeplekhwani9706 2 жыл бұрын
Nice👍
@gautam4350
@gautam4350 2 жыл бұрын
In 1 i starts from 1 and i*6
@codeforhumanity
@codeforhumanity 2 жыл бұрын
For loop ka galat hai... Ek variable int a= I*6 lo then cout a karo
@AnEngineerHuman
@AnEngineerHuman Жыл бұрын
Day-08 Comleted upto Tutorial 10 10-12-2022 Loops_In_C++ Love u harry sir
@KrishOm-ip4zk
@KrishOm-ip4zk 2 ай бұрын
Hw //Program to run the table of 6 #include using namespace std; int main(){ int a = 6; int b = 1; do { cout
@ezazsarkar125
@ezazsarkar125 Жыл бұрын
// Include Header Files #include // Using Standard Library using namespace std; // Main Function int main() { // Variable Declaration int num = 1; int table = 6; // Do-While Loop do { cout
@ShaheerShah-o8t
@ShaheerShah-o8t 9 ай бұрын
@snipershorty4218
@snipershorty4218 9 ай бұрын
int i=1; do{ cout
@aayushhh2617
@aayushhh2617 9 ай бұрын
#include using namespace std; int main(){ int num,mul,i=1; coutnum; do{ mul=num*i; cout
@aryandhokare1561
@aryandhokare1561 9 ай бұрын
#include using namespace std; int main(){ int j = 1; for (int i = 1; i
@royalprince_ff
@royalprince_ff 8 ай бұрын
#include using namespace std; int main() { //cout
@digitalyash6252
@digitalyash6252 Жыл бұрын
// Write a code to print multiple of 6: #include using namespace std; int main(){ int i=1; do{ cout
@mrhyper527
@mrhyper527 Жыл бұрын
this is wrong
@KaranPrashar-g1j
@KaranPrashar-g1j Жыл бұрын
@@mrhyper527 yes where is return 0 .
@tanmaywalunj8070
@tanmaywalunj8070 Жыл бұрын
This is too long bro I have done it in much simple way
@shahriar9650
@shahriar9650 Жыл бұрын
​@@mrhyper527No, not wrong.
@shahriar9650
@shahriar9650 Жыл бұрын
Thanks so much.
@parthdeshpande8019
@parthdeshpande8019 Жыл бұрын
Challenge Accepted #include using namespace std; int main() { int i=1; do{ cout
@theAR_editz
@theAR_editz 6 ай бұрын
#include using namespace std; int main() { int i=1; int j=6; do{ int k=i*j; cout
@jigyasachoudhary3508
@jigyasachoudhary3508 2 жыл бұрын
Just started watching your videos as an absolute beginner. Learning a lot. Challenge accepted...👍
@user-nm4vn9tq5o
@user-nm4vn9tq5o 3 жыл бұрын
Caution: 13:36 Never put semicolon (;)after the condional statement in while and do while loops, otherwise infinite loop will start playing.And you laptop will start heating. I went through this situation while watching this tutorial today. A quick fix for this in vs code is : Ctrl+C or Ctrl+Alt+M
@sapnewapne
@sapnewapne 3 жыл бұрын
I think if you don't increase the variable used in the condition, the loop becomes infinite.
@sapnewapne
@sapnewapne 3 жыл бұрын
i made that mistake too
@mk223gaming9
@mk223gaming9 3 жыл бұрын
Thanks bro
@nemishdevel8015
@nemishdevel8015 2 жыл бұрын
@@sapnewapne For stop the infinite loop we can type crtl + c Is that mean you saying??
@Shawn-ff3xg
@Shawn-ff3xg 2 жыл бұрын
@@nemishdevel8015 yeah
@rishitsharma95
@rishitsharma95 Жыл бұрын
18:56 Made the challenge a little better , I added an input for the number whose table is to be printed by the user: #include using namespace std; void dowhileloop(){ //A separate function int i; cout
@akshatkashyap5182
@akshatkashyap5182 Жыл бұрын
Can you explain this a little bit?
@sanataniGokulKothari
@sanataniGokulKothari Жыл бұрын
#include Using namespace std; void func(int n){ for(int i=1; i
@jayantgupta8657
@jayantgupta8657 4 ай бұрын
int table=6; cout
@kasturimohapatra9157
@kasturimohapatra9157 2 жыл бұрын
Challenge accepted bhaiya🙏 Thank you bhaiya for this great video.I am a non computer science student but I understand each and every concept very clearly also learning c at first help me a lot❤️
@rohankumar6315
@rohankumar6315 4 жыл бұрын
challenge accepted: #include using namespace std; int main(){ int t=1,n,table=0; coutn; while(t
@mmscreation5344
@mmscreation5344 3 жыл бұрын
Wow..
@Shivang-rj9lq
@Shivang-rj9lq 3 жыл бұрын
Isme do while kha Hain show off
@Shivang-rj9lq
@Shivang-rj9lq 3 жыл бұрын
Google
@sarojbiswas7032
@sarojbiswas7032 3 жыл бұрын
Ek variable kam lenge to memory consumption kam hoga. Table variable ke bina bhi banega ye.
@ajnn3750
@ajnn3750 3 жыл бұрын
Challenge accepted. Thankyou sir your teaching style is amazing.
@Mukal202
@Mukal202 3 ай бұрын
6 Table using While Loops: #include using namespace std; int main(){ int i=1; while(i
@amanraghuwanshi1283
@amanraghuwanshi1283 3 жыл бұрын
challenge accepted and successfully written the code and loving the course
@shrutika1852
@shrutika1852 2 жыл бұрын
The course is very cool.👍 But the practice set was wanted. I mean, like any other language, it would have been perfect. If there is a practice set, please share it with everyone
@priyanka__verma
@priyanka__verma 2 жыл бұрын
Challenge accepted and completed using all three loops and so far it's going smooth.
@Ahmad-p9v
@Ahmad-p9v 12 күн бұрын
# include using namespace std; int main() { int a=6; int i=1; do { cout
@sambhavsahoo398
@sambhavsahoo398 2 жыл бұрын
Challenge accepted and completed too using all the three loops... Now this concepts are getting cleared after going through your lectures..
@atgamingstudios6445
@atgamingstudios6445 4 жыл бұрын
Challenge accepted #include using namespace std; int main(){ int i=1; do{ cout
@harshtandon4150
@harshtandon4150 4 жыл бұрын
Nycc
@thecomputer1424
@thecomputer1424 Жыл бұрын
Challenge accepted and completed! Nice teaching, keep up the wonderful content.
@devvarshney7011
@devvarshney7011 4 ай бұрын
#include Using namespace std; int a=6 int main(){ for(i=1,i=
@priyajaiswal4476
@priyajaiswal4476 3 жыл бұрын
# include using namespace std; int main() { int i=1; do { cout
@shakirullah4718
@shakirullah4718 2 жыл бұрын
Good your so intelligent
@latabhosale3407
@latabhosale3407 3 жыл бұрын
I used for loop for writing the table. My concept of loops is clear. Thanks.
@rishabhpandey9445
@rishabhpandey9445 2 жыл бұрын
#include using namespace std; int main () { //using while loop /* int i=1,n=6; while(i
@ibrahimmohsin8047
@ibrahimmohsin8047 3 ай бұрын
# include using namespace std; int main(){ int i=6; do{ cout
@zeff9629
@zeff9629 3 жыл бұрын
Challange accepted! I know its been 1 year but thank you harry bhai For (int i =6; i
@devanshtripathi9082
@devanshtripathi9082 3 жыл бұрын
More optimized solution .. int n=6; for (i=1;i
@AmanSingh-br1nr
@AmanSingh-br1nr 3 жыл бұрын
bhai ye shyd galat haii compile krte mein chalta jara haii
@shashanktirkey8178
@shashanktirkey8178 3 жыл бұрын
@@AmanSingh-br1nr that good code
@ashutosh14003
@ashutosh14003 3 жыл бұрын
@@shashanktirkey8178 nope actually he forgot to write int i
@ashutosh14003
@ashutosh14003 3 жыл бұрын
@@devanshtripathi9082 bhai int i ni likha pahli galti doosri galti n*i k liye variablr bnaya hi ni hai tu toh tune directly kise daal diya usse cout mein woh unknown cheej hai toh shyd value ni dega bhut fault hai bhai dekh le ek baar tu hi
@jahidalic54s
@jahidalic54s 4 жыл бұрын
// WAP to show the multiplication table of 6 #include using namespace std; int main(){ cout
@alishbabibi1493
@alishbabibi1493 3 жыл бұрын
Ap nay I ko initialize he nai krwaya
@jahidalic54s
@jahidalic54s 3 жыл бұрын
@@alishbabibi1493 loop ke variables ke liye initialization ki jaroorat nhi hoti hai.
@dotmashrc
@dotmashrc 3 жыл бұрын
@@jahidalic54s it will give 0 as the first result. i think it would be i=1.
@sarojbiswas7032
@sarojbiswas7032 3 жыл бұрын
@@alishbabibi1493 For loop ke andar hi Initialization hai. While aur do-while me pehle initialization karte hai
@ahmedalishahid2666
@ahmedalishahid2666 3 жыл бұрын
I am from Pakistan but good programming easy method to explain code .INSHALLH I follow this code
@priyanshusharma2144
@priyanshusharma2144 3 жыл бұрын
Why don't you watch pakistani channel for coding, 😂😂Why you always be dependent on India like qualifying world Cup 2019 pakistan depend upon ind vs eng match😂😂
@deepanshu2780
@deepanshu2780 2 жыл бұрын
@@priyanshusharma2144 History repeated bruh ; afg vs nz (smile in pain )🥲
@manunair3591
@manunair3591 2 ай бұрын
Home work done : #include using namespace std; int main(){ cout
@kshitizsinghchauhan7464
@kshitizsinghchauhan7464 3 жыл бұрын
Just started with your lectures and they're really helpful. Nice work
@lyrical89017
@lyrical89017 3 жыл бұрын
19.19 i done it thanks for this wonderful course!
@akashmishra4623
@akashmishra4623 2 жыл бұрын
challenge accepted and executed very well by all loops. harry bhaiya your teaching is just amazing.
@shubhayubose345
@shubhayubose345 3 жыл бұрын
cout
@dotmashrc
@dotmashrc 3 жыл бұрын
pura code to likhta chomu
@ravisheksingh7498
@ravisheksingh7498 3 жыл бұрын
@@dotmashrc 😂😂😂
@rajujat6955
@rajujat6955 2 жыл бұрын
@@dotmashrc 😂😂😂😂😂😂😂😂
@anujjaiswal7696
@anujjaiswal7696 2 жыл бұрын
Are subhayau bhay mai anuj hu tere clg ka
@shubhamtanwar361
@shubhamtanwar361 2 жыл бұрын
@@anujjaiswal7696 hello brother
@PrithviVlogs247
@PrithviVlogs247 4 жыл бұрын
// Printing table of 6 using do while loop #include using namespace std; int main() { int i = 1; do { cout
@debabratasahoo578
@debabratasahoo578 4 жыл бұрын
think this is good
@finite7353
@finite7353 4 жыл бұрын
Yes
@Aryavart..
@Aryavart.. 4 жыл бұрын
Confusing 🤔🤔 Simply you can write :- cout line -----> cout
@dikshajain9845
@dikshajain9845 4 жыл бұрын
cout
@Aryavart..
@Aryavart.. 4 жыл бұрын
@@dikshajain9845 give space to see better ---> cout
@pritishmahajan5639
@pritishmahajan5639 Жыл бұрын
#include using namespace std; int main() { /*Table of 6*/ int i; for(i=1;i
@krushnagaming2438
@krushnagaming2438 12 күн бұрын
Include using namespace std; Int main { Int i=1; do { Cout
@AmanKumar-xf6sr
@AmanKumar-xf6sr 4 жыл бұрын
I learnt very much from you Thanks Sir....
@ishitabhattacharyya9882
@ishitabhattacharyya9882 Жыл бұрын
CHALLENGE ACCEPTED // MULTIPLICATION TABLE OF 6 USING DO-WHILE LOOP #include using namespace std; int main(){ int i=0, a=6; cout
@pratyushkumar1919
@pratyushkumar1919 Жыл бұрын
You should initialize i=1 & i
@akashjadhav411
@akashjadhav411 3 жыл бұрын
Challenge accepted # include using namespace std; int main(){ int i=1; int table =0; while (i
@swarupsahu8560
@swarupsahu8560 3 жыл бұрын
Good job @Akash jadav
@Anasop335
@Anasop335 8 ай бұрын
#include using namespace std; int main(){ int i=1,num; cin>>num; do{ cout
@eitoes
@eitoes 3 жыл бұрын
Challenge accepted bhaiya! Loving this course and thank you for providing such a quality course for free. Edit: Completed the challenge successfully using all three loops.
@Mayankkumar-hq6is
@Mayankkumar-hq6is 3 жыл бұрын
15:52 "with great power comes great responsibility"spider man😅
@RahulKumar-no2ks
@RahulKumar-no2ks 3 жыл бұрын
Far From Home😂
@rohitpounikar
@rohitpounikar 3 жыл бұрын
😂😂😂
@prathameshsuryawanshi5017
@prathameshsuryawanshi5017 4 жыл бұрын
Please make detailed course on Data Structures and Algorithm...........
@rajnandinigorai247
@rajnandinigorai247 3 жыл бұрын
Already playlist is there in this channel for data structure and algorithm
@prathameshsuryawanshi5017
@prathameshsuryawanshi5017 3 жыл бұрын
@@rajnandinigorai247 wo comment kb ki thi wo to dekho 👀
@prateek6485
@prateek6485 2 ай бұрын
#include using namespace std; int i=2; int j=1; int main(){ do{ cout
@edwingeorge9823
@edwingeorge9823 3 жыл бұрын
Sir challenge accepted .Completed the challenge using all the three loops.
@SAGAR-fx1xz
@SAGAR-fx1xz 3 жыл бұрын
from Mumbai challenge accepted and code is also executed thank you for this lovey course
@vaibhav7457
@vaibhav7457 3 жыл бұрын
what's up bro how's life in mumbai? I'm from delhi never been to Maharashtra
@rajendrajadhav307
@rajendrajadhav307 4 жыл бұрын
U r really helping beginners like me thank you so much do prepare such many courses
@Mukal202
@Mukal202 3 ай бұрын
Any numbers table here: #include using namespace std; int main(){ int n, i=1; cout
@kajalrajput6085
@kajalrajput6085 3 жыл бұрын
Challenge accepted sir. You have done a good job. Thanks for all the hard work.
@AirmenAcademy
@AirmenAcademy 3 жыл бұрын
Are You pursuing Bsc computer science.?
@BloggerAkhil
@BloggerAkhil 2 жыл бұрын
#include using namespace std; int main(){ /*Loops in C++: There are three types of loops in C++: 1. For loop 2. While Loop 3. do-While Loop */ /*For loop in C++*/ // int i=1; // cout
@Jobwallah1
@Jobwallah1 Жыл бұрын
Acha Kia Maine lecture dekhne se phle comment pdh liya . Ab pura lecture ka summary mil gya. Ab lecture dekhne ki koi jarurat nhi 😂😂😂
@abhijitmanna4524
@abhijitmanna4524 3 жыл бұрын
Learning C++ after C makes me understand well and better
@lwckh7402
@lwckh7402 9 ай бұрын
It's correct sir❤️‍🔥 #include Using namespace std; Int main() { Int num=6; For(int i=1; i
@NYSWorld
@NYSWorld 3 жыл бұрын
harry bro challenge accepted # include using namespace std; int main(){ int i,n; cout
@satyamsingh3
@satyamsingh3 3 жыл бұрын
nice logic bro
@satyamverma434
@satyamverma434 3 жыл бұрын
how to solve same qus with do while loo0
@SandyTriedGaming
@SandyTriedGaming 2 жыл бұрын
"With Great Power comes Great Responsibility"
@yashkumar7812
@yashkumar7812 3 жыл бұрын
Challenge accepted & done bro!! Your teaching style is best!!! Thank you so much 😃
@muhammadsuhail2364
@muhammadsuhail2364 8 ай бұрын
#include using namespace std ; int main () { int i=6; for ( i=6; i
@PlayLikePro327
@PlayLikePro327 3 жыл бұрын
Thanks for your efforts sir .....sir ..i m in 1st year of engineering my subject is cs And yours video is very helpful to me ....thank a lot ❤️🙂
@SonuRaj-co3ss
@SonuRaj-co3ss 3 жыл бұрын
Thankyou so much for your classes ,i m really now motivated for coding . Massive respect for you bro🙏🙏🙏
@kalpnabelwanshi9567
@kalpnabelwanshi9567 2 жыл бұрын
Agr infinite loop m fas gye or mujhe pta nhi tha ctrl+c se stop ho jata h tho mne vc ko hi close kar diya tho kuch problem tho nhi hogi na, mne vha se bhi delete kar diya jha ye vs code save hota h
@bhargavshekhar3745
@bhargavshekhar3745 Жыл бұрын
​@@kalpnabelwanshi9567 bhai tere pc faat jayega jaldi se jaldi bhag ja waha se
@jayantgurusrivastava8256
@jayantgurusrivastava8256 3 жыл бұрын
Challenge accepted Edit:Successfully written the code using all 3 loops
@sushovanchakraborty4908
@sushovanchakraborty4908 7 ай бұрын
#include using namespace std; int main(){ int i=0,c=6; //table for multiplication of 6 using do while loop-------> do { cout
@rajatsahu9313
@rajatsahu9313 3 жыл бұрын
Hey Harry bhaiya. Accepted your chalange . I wrote table of 6 with for loop . Thank you so much for your help. This series is very helpful for me .
Break and Continue Statements in C++ | C++ Tutorials for Beginners #11
10:35
C++ Tutorial -   Loops In C++ [For Loop, While Loop, Do While Loop]
16:20
REAL 3D brush can draw grass Life Hack #shorts #lifehacks
00:42
MrMaximus
Рет қаралды 5 МЛН
Epic Reflex Game vs MrBeast Crew 🙈😱
00:32
Celine Dept
Рет қаралды 39 МЛН
Nested Loop in C++ || Nested for loop in C++ || Nested for loops
12:11
Computing Knowledge
Рет қаралды 87 М.
The Wordpress drama keeps getting worse
12:47
Theo - t3․gg
Рет қаралды 24 М.
Arrays & Pointers Arithmetic in C++ | C++ Tutorials for Beginners #13
22:22
Pointers in C++ | C++ Tutorials for Beginners #12
16:39
CodeWithHarry
Рет қаралды 1 МЛН
C# Looping Statements | while, do-while, for & forEach loop
14:42
Learn Coding
Рет қаралды 122 М.
Should You Learn Multiple Programming Languages? (The Truth)
8:29
CodeWithHarry
Рет қаралды 93 М.