Do While Loop In C: C Tutorial In Hindi #13

  Рет қаралды 737,578

CodeWithHarry

CodeWithHarry

Күн бұрын

In this C programming tutorial video, I have explained you about do while loops. 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

Пікірлер: 634
@sumitsoni8471
@sumitsoni8471 4 жыл бұрын
Bhaiya hr ek video ke end me 1 question diya kro.
@vivekkumar4855
@vivekkumar4855 3 жыл бұрын
Ekdm shi
@Manishkksk2h
@Manishkksk2h 3 жыл бұрын
🙃
@kshitijshekhar1144
@kshitijshekhar1144 3 жыл бұрын
you want everything spoonfed to you?
@daydreamer_megh
@daydreamer_megh 3 жыл бұрын
Google kia karo waha lakho questions hai vai
@ramzanm45
@ramzanm45 3 жыл бұрын
@@kshitijshekhar1144 bodied sumit 🤣🤣🤣
@Fantasies_world
@Fantasies_world 5 ай бұрын
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
@sanikatiwarekar9202
@sanikatiwarekar9202 3 жыл бұрын
Course is going at the perfect pace ! Thank you very much for creating this course !
@Priyam233
@Priyam233 4 жыл бұрын
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....
@mdalikhan9712
@mdalikhan9712 3 жыл бұрын
ism dhanbad??
@Priyam233
@Priyam233 3 жыл бұрын
@@mdalikhan9712 yes but right now, I m in IIT PATNA
@invincible6230
@invincible6230 Жыл бұрын
@@Priyam233 How college changed, partial dropped or mtech?
@Priyam233
@Priyam233 Жыл бұрын
@@invincible6230 Persued M.Tech.
@abhisheksingh5381
@abhisheksingh5381 5 ай бұрын
Ab kis college me ho bhai ​@@Priyam233
@SadamHussain-zj9ei
@SadamHussain-zj9ei 5 жыл бұрын
Great course so fast thank you so much.
@yashasviagrawal5685
@yashasviagrawal5685 3 жыл бұрын
far*
@ydafukomi
@ydafukomi 10 ай бұрын
​@@yashasviagrawal5685 Mind your own business bro. Don't forget you're talking to Saddam Hussain. If you know, you know😂
@rajjadhav9617
@rajjadhav9617 9 ай бұрын
🎉❤❤❤❤❤
@ydafukomi
@ydafukomi 4 ай бұрын
@Nobitaarmy007 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
@barunjena6171
@barunjena6171 4 жыл бұрын
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
@ashishredhu2379 3 жыл бұрын
May you please comment the code of multiplication table !
@arandomperson5107
@arandomperson5107 3 жыл бұрын
@@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; }
@hopealive3013
@hopealive3013 3 жыл бұрын
@@arandomperson5107 just use index = index +1 ; using do while loop no use for writing this long
@Ramesh-ps7yn
@Ramesh-ps7yn 2 жыл бұрын
@@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
@AnandaChaudharyOfficial
@AnandaChaudharyOfficial 5 жыл бұрын
I'm understanding better than college..... Thanks bde Vai🙏💕🙏💕🙏💕🙏💕
@vedanshchn
@vedanshchn 3 жыл бұрын
Same bruh. So glad I found these series.
@suyogmungale3471
@suyogmungale3471 4 жыл бұрын
Harry bhai u r rock Thank you so much for providing this great knowledge
@MrKHAN-oi5pw
@MrKHAN-oi5pw 4 жыл бұрын
thank you very much for providing this course for free, that's really great.
@collagelife8953
@collagelife8953 Жыл бұрын
#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; }
@abdulaziz7239
@abdulaziz7239 3 жыл бұрын
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
@Hunter-ql9ij
@Hunter-ql9ij 4 жыл бұрын
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
@payalsaini4478
@payalsaini4478 9 ай бұрын
Syntax btado table ka mujhe bhi krni h
@ishowmercy01
@ishowmercy01 4 жыл бұрын
Going with a very nice Speed ❤️❤️
@harshs0891
@harshs0891 2 жыл бұрын
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
@saket_saurav
@saket_saurav 2 жыл бұрын
Nice bro, it's working
@anshikasoni4551
@anshikasoni4551 Жыл бұрын
I tried this ques it has compiled but when I m giving a no.then no table is printed
@Hbjbmlsi
@Hbjbmlsi 3 ай бұрын
Good but with for loop it is more easy and structured.
@Shadowxsahil
@Shadowxsahil 26 күн бұрын
while(i
@63_shayna79
@63_shayna79 3 жыл бұрын
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❤
@entirethings7095
@entirethings7095 3 жыл бұрын
From which university you belong
@simrat9250
@simrat9250 3 жыл бұрын
No learn c++ first Then you can easily switch to c
@63_shubham_vadhariya87
@63_shubham_vadhariya87 3 жыл бұрын
which university you study ?
@chiragchauhan7449
@chiragchauhan7449 3 жыл бұрын
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-04riturajpal91
@cse-04riturajpal91 3 жыл бұрын
Kisi ne pucha tere se 😂😂
@Chatuphale
@Chatuphale 5 жыл бұрын
Bhai 3 Sal pahle q nahi mile😫. Afsos but late comes best comes. You are good teacher🙋.
@rohinitachaudhari9684
@rohinitachaudhari9684 3 жыл бұрын
O bhai sahb college to bs nam ka hai ..asli gyan to aap de rhe ho🔥❤️
@Hustler2025
@Hustler2025 3 жыл бұрын
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
@shloksinhsolanki2198
@shloksinhsolanki2198 12 күн бұрын
Baat to sahi he.
@ankittiwari5731
@ankittiwari5731 2 жыл бұрын
i am student b.tech 1year and iam watching c program language thanku sir jii
@viveksoni1923
@viveksoni1923 5 жыл бұрын
Brother these videos are very helpful. great
@onlystudy911
@onlystudy911 3 жыл бұрын
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 😂😂😂🤣🤣😂🤣
@adityaraj21064
@adityaraj21064 2 жыл бұрын
Code: #include int main() { int num; int i = 0; printf("Enter a number -> "); scanf("%d", &num); do { i = i + 1; printf("%d X %d = %d ", num, i, num * i); } while (i < 10); return 0; } Output: Enter a number -> 2 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
@MansiAlmiya
@MansiAlmiya 2 ай бұрын
The course is amazing bhaiya .such an amazing explanation. Thank you
@AwesomeCodings
@AwesomeCodings 4 жыл бұрын
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
@JayPatel_jp10
@JayPatel_jp10 6 ай бұрын
Bhai tu 2 saal baad comment kar raha hai😅
@AwesomeCodings
@AwesomeCodings 6 ай бұрын
@@JayPatel_jp10 aur tu us 3 saal purane comment par reply kar raha hai
@JayPatel_jp10
@JayPatel_jp10 5 ай бұрын
@@AwesomeCodings kyunki tu mujhe reply de sakta hai but Harry tujhe reply nahi dega🙃
@baharuddinsk6943
@baharuddinsk6943 4 жыл бұрын
You are really great person sir...🙏🙏... thank you so much sir...
@oneseven1
@oneseven1 3 жыл бұрын
//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 '
@Gameboyl
@Gameboyl Жыл бұрын
Now even when you didn't ask us to make anything I still did :) #include int main() { int TableNumber; int MultiplyBy = 1; printf("The table of "); scanf("%d", &TableNumber); do { printf("%d X %d = %d ", TableNumber, MultiplyBy, TableNumber*MultiplyBy); MultiplyBy = MultiplyBy + 1; } while(MultiplyBy < 11); return 0; } // Love you harry ❤❤❤❤
@Komal_Rathod954
@Komal_Rathod954 3 жыл бұрын
Your teaching is World best teaching for me sir😊 I am thankful for your helpful video's 🙏
@rudrakachhia3882
@rudrakachhia3882 4 жыл бұрын
Great teaching with great speed 😘😘😘
@royfamily9273
@royfamily9273 3 жыл бұрын
Course ka pace ekdam shi hai bhaiya. Thanks Harry Bhaiya
@rkt8748
@rkt8748 2 жыл бұрын
Thankyou bhaiya, your explanation is superb
@ManishDutt-nh9dd
@ManishDutt-nh9dd 3 жыл бұрын
waahhh bro waahhh thank you so much bro 😀 muje samaj aaa gyaaa do while loop 🤟😁
@noomanrazakhan6373
@noomanrazakhan6373 4 жыл бұрын
Bhai ek dum badhiya. Sab smjh aa rha hai abb tak. 🙏🏻
@subhranilghosh8179
@subhranilghosh8179 4 жыл бұрын
Excellent video I have cleared all my doubts
@priyanujbora9689
@priyanujbora9689 4 жыл бұрын
Your teaching method is great!!
@jyotisingh8056
@jyotisingh8056 3 жыл бұрын
this course is really helping me alot
@softwareword1507
@softwareword1507 5 жыл бұрын
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
@tarunsingh7826
@tarunsingh7826 4 жыл бұрын
Great job Harry bhai
@RohanDasRD
@RohanDasRD 5 жыл бұрын
Bhai Ek Video Chahiye To Learn AI Using Python!
@CodeWithHarry
@CodeWithHarry 5 жыл бұрын
Jaldi banata hoon bhai!
@vaibhavkannur2460
@vaibhavkannur2460 4 жыл бұрын
dez videos r helping a lott fr my cs exams
@anjunsaini319
@anjunsaini319 7 ай бұрын
it's going osm... ✌💯
@SANJAYDAS-zh7fw
@SANJAYDAS-zh7fw 3 жыл бұрын
Perfect course!! Thank you Harry bhai.
@noomanrazakhan6373
@noomanrazakhan6373 4 жыл бұрын
Happy Teacher's Day🙏🏻
@geek2know175
@geek2know175 5 жыл бұрын
Thanks a lot sir for this series.😊😊😍😍😍
@chiragchauhan7449
@chiragchauhan7449 3 жыл бұрын
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 .....
@anirudh1045
@anirudh1045 5 жыл бұрын
Bohot sahi course speed hai sub smajh mein aa raha hai harry bhai😇😇😇😇😇😇
@monumentalindia5503
@monumentalindia5503 Жыл бұрын
Sir your course is perfect and explanation is very good thank you very much 💖💖💖
@prashant_AI_1510
@prashant_AI_1510 4 жыл бұрын
its easy to understand for beginners, thank you sirji ....
@niharikanagar7729
@niharikanagar7729 4 жыл бұрын
It was really helpful,thank you..🙏
@smgaming8197
@smgaming8197 5 жыл бұрын
Bohat khub harry bhai..👌
@sasabamv5330
@sasabamv5330 3 жыл бұрын
I watch our videos regularly..thnx
@mr.rupesh_kumar___mrk
@mr.rupesh_kumar___mrk Жыл бұрын
नहीं भाई एक दम सही और परफेक्ट टेचिंग कर रहे हैं
@Cricketclips890-mt3fn
@Cricketclips890-mt3fn Жыл бұрын
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
@amitpandey5404
@amitpandey5404 Жыл бұрын
Thik padha rhe ho bhaiya.koi problem nahi hai.❤
@MayankSharma-jl6rc
@MayankSharma-jl6rc 4 жыл бұрын
Sir , you are going with decent speed !!,you are great !!
@LOL-pj5lo
@LOL-pj5lo 8 ай бұрын
brother can you help me with a code??
@LOL-pj5lo
@LOL-pj5lo 8 ай бұрын
#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; }
@LOL-pj5lo
@LOL-pj5lo 8 ай бұрын
can you please tell What Im doing wrong??....
@dipankargiri4074
@dipankargiri4074 3 жыл бұрын
Great explanation..🙏🏻👍
@devanshijain4395
@devanshijain4395 3 жыл бұрын
Thank you for this course sir
@IT__KumariTejaswini-xv9ii
@IT__KumariTejaswini-xv9ii 5 жыл бұрын
You r very great man!!!!!!... 😎😎😎
@Vedha-qc5ei
@Vedha-qc5ei Жыл бұрын
thank you so much
@carscrazz8037
@carscrazz8037 Жыл бұрын
thnks finally my loops concept is cleared👍🏻
@shivalodhivlogs
@shivalodhivlogs Жыл бұрын
हरि भाई आप मस्त तरीके से समझाते हो
@yashharjani2273
@yashharjani2273 Жыл бұрын
the pace is normal understandable enough thanks
@memelover8320
@memelover8320 Жыл бұрын
When will the condition be false?
@onkarshinde2469
@onkarshinde2469 3 жыл бұрын
Bhayia ap bohot accha palate ho💥❤
@1rfan_saeed
@1rfan_saeed 5 жыл бұрын
my perfect tutor
@epicshop1058
@epicshop1058 2 жыл бұрын
Great job.. Take love from Bangladesh
@jaydeeppatel269
@jaydeeppatel269 4 жыл бұрын
Bhau complete pace neither fast nor slow
@prabhudayalyadav6508
@prabhudayalyadav6508 3 жыл бұрын
Bhai mst video hai maine aadha course csukh liya
@SAMEER_99
@SAMEER_99 3 жыл бұрын
Ekdum op ho aap harry sir
@manish2328
@manish2328 2 жыл бұрын
Feels good to keep going ahead in you c programming series
@AshuAshupal-j6m
@AshuAshupal-j6m 4 ай бұрын
We need more ques for practice 😊
@atifmalik8012
@atifmalik8012 11 ай бұрын
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
@vaibhavkannur2460
@vaibhavkannur2460 4 жыл бұрын
thanksss bahi for such an amazing cource
@IsaAbuhuseina
@IsaAbuhuseina 2 жыл бұрын
Excellent teaching skills!
@EditSandeep2009
@EditSandeep2009 2 жыл бұрын
Multiplication table answer #include int main() { int num, tab = 1; printf("Which multiplication table do you want? ", num); scanf("%d", &num); printf("You entered %d for multiplication table ", num); do { printf("%d x %d = %d ", num, tab, num * tab); tab = tab + 1; } while (tab < 11); return 0; }
@boxydial
@boxydial Жыл бұрын
great vai
@surajinamdar3847
@surajinamdar3847 Жыл бұрын
@@boxydial check this #include int main() { int i,j,index=1; printf("enter whose table you want: "); scanf("%d",&i); printf("enter till what you want to multipy: "); scanf("%d",&j); do { printf("%d*%d=%d ", i,index,i*index); index=index+1; } while(index
@umashankarmathankar6986
@umashankarmathankar6986 3 жыл бұрын
you are teaching with good speed
@Arpitgaming-q7y
@Arpitgaming-q7y 3 жыл бұрын
Bahut badiya hary bhai osm video
@Ayushsharma-qc7qx
@Ayushsharma-qc7qx 3 жыл бұрын
Bhi yrr love u 😍😍😍 Best teacher
@AishwarysinghEC
@AishwarysinghEC 4 жыл бұрын
Harry Bhai...💓
@nitashah6988
@nitashah6988 2 жыл бұрын
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
@umairabdullah9041
@umairabdullah9041 2 жыл бұрын
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
@anonymousgerman2809
@anonymousgerman2809 3 жыл бұрын
definately better than college thankyou so much
@yogeshsingh4363
@yogeshsingh4363 5 жыл бұрын
Thank You bro You are Great... 🙂
@susprogramming9000
@susprogramming9000 3 жыл бұрын
Harry bhai aap to bahut acha padate ho kash aap mere teacher hote college me
@musicmanpj583
@musicmanpj583 2 жыл бұрын
Love you harry bhiya❤️🥺
@triggeredengineer2582
@triggeredengineer2582 4 жыл бұрын
bhaiyo harry bhai 1 M jaldi se jaldi complete karo
@dhruvilshah7937
@dhruvilshah7937 4 жыл бұрын
*MULTIPLICATION CASE CODE*\\SIR YOU ARE GREAT #include int main() { int x,y,z; y=1; printf("Enter Number for multiplication table "); scanf("%d",&x); do { printf("%d*%d=%d ",x,y,x*y); y=y+1; } while (y
@PurviGuptaofficial
@PurviGuptaofficial 5 ай бұрын
Output nhi arha
@ishatamang3524
@ishatamang3524 3 жыл бұрын
Thank you 😊 for sharing knowledge
@Sarvesh-he7zx
@Sarvesh-he7zx 6 ай бұрын
#include //multiplication table using loop int main() { int number; int i=0; printf("enter the no of which multiplication table you want "); scanf("%d", &number); printf("the table of %d is ",number); do{ i=i+1; printf("%d*%d=%d ",number,i,number*i); }while(i
@asadahmadkhan1054
@asadahmadkhan1054 3 жыл бұрын
Harry Bhai mja aagya 🥳🎉
@ishantsharma7647
@ishantsharma7647 4 жыл бұрын
You made it freaking easy
@GautamPatel-953
@GautamPatel-953 4 жыл бұрын
Harry bhai you are great 👌👍👏
@huzaifabhaitalibbhaikhety8982
@huzaifabhaitalibbhaikhety8982 3 жыл бұрын
harry bhai speed normal he kyun ke achi tara samjh me aja ta he aur maza ata he
@dakshff8306
@dakshff8306 7 ай бұрын
Nice explanation ❤
@Codingismagic
@Codingismagic Жыл бұрын
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
@preritjain6693
@preritjain6693 3 жыл бұрын
Your speed is ok Hàrry bhai 👍
@PRIYANSHUSINGH-sw6pi
@PRIYANSHUSINGH-sw6pi 4 жыл бұрын
Best course for c ever seen
@madhamitadas
@madhamitadas 6 ай бұрын
#include int main() { int number, index=0; printf("Enter the number "); scanf("%d", &number); do{ printf("%d ", index+1); index=index+1; } while(index
@ranjitmaity6620
@ranjitmaity6620 4 жыл бұрын
sir kindly make a video on analysis and design of algorithms Please
@Lv_La_Lr
@Lv_La_Lr 3 ай бұрын
Harry Sensei OP ❤❤
@Healthy_anshul
@Healthy_anshul 4 жыл бұрын
sir your mathod is so best sir thank you so much sir
@siddhigaikwad3266
@siddhigaikwad3266 3 жыл бұрын
We really appreciate your efforts for making all the videos. Your videos are really very helpful to us and Thankyou soo much.
@8_abhimanyuchoudhary223
@8_abhimanyuchoudhary223 4 жыл бұрын
Sir aapke video par like aaye ya naa aaye but sir aap ek great teacher ho 🙏
While Loop In C: C Tutorial In Hindi #14
6:09
CodeWithHarry
Рет қаралды 545 М.
For Loop In C: C Tutorial In Hindi #15
15:57
CodeWithHarry
Рет қаралды 693 М.
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Learn Coding & Get a Job (in 2025) 🔥
16:54
CodeWithHarry
Рет қаралды 1 МЛН
C_39 Do while loop in C with program | C Programming Tutorials
8:23
Jenny's Lectures CS IT
Рет қаралды 193 М.
Loops In C: C Tutorial In Hindi #12
10:19
CodeWithHarry
Рет қаралды 813 М.
While loop in C Programming with examples
7:15
Gate Smashers
Рет қаралды 284 М.
C_43 Need of Nested Loops in C | Nested For loop in C
18:31
Jenny's Lectures CS IT
Рет қаралды 671 М.
do-while Loop
5:03
Neso Academy
Рет қаралды 705 М.
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН