While Loop In C: C Tutorial In Hindi #14

preview_player
Показать описание
In this C programming tutorial video, I have explained you about while loops. I hope you are enjoying this C course in Hindi.

Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

College me ppt's dikhake bata dete hai ye aisa wo aisa. Kuch bhi nahi samjhta.
But aap syntax khud likhake explain karte ho aur phir code run bhi karke dikhate to bohot better, 🤔 not better but best samjhta hai.
Thank you soo much Harry bhai ya for this course 🥰🥰🥰

smp
Автор

all the theories and practicals are understandable. You sense of teaching techniques is much better than some other teacher.

manishkumarambasta
Автор

#include<stdio.h>
int main()
{
int num, lim, i=1;
//Multiplication Table using While Loop in C Programming Language
printf("Enter the number whose multiplication table you want to print:");
scanf("%d", &num);
printf("Enter the limit of your multiplication table:");
scanf("%d", &lim);
while(i<=lim)
{
printf("%d X %d=%d\n", num, i, num*i);
i=i+1;

}
return 0;
}

mahimachoudhury
Автор

bro, college ke teachers se jayada help to aapse milti hai,
is couse ke liye aapka bahut bhaut dhanywaad

darkstarop
Автор

Amazing sir i understand all things your teaching skill is so good please keep it up god bless 🙏you

thebeatifulnature
Автор

Thanks Haris Sir, we r so blessed that you are teaching coding that too free.

TwinshuParmar
Автор

I didn't saw any teacher like you...till now.

sheryartanolisheritanoli
Автор

thanks Harry bhai for such amazing vidoes....your teaching speed is really good...just suites the beginners....neither too fast nor slow, you teach really well...concepts become so clear...you teach theory with practicals so easily that any layman can easily understand and learn....just great...u are just amazing...i think you are the best in youtube reg C tutorials....

aryanmathur
Автор

Everything is amazing best wishes to you 🙏.. fabulous way of teaching sir 🙏

gauravvitrag
Автор

Sir u r great
Plz increse the level of dificulty of programm and increas the no of example

tejasthombare
Автор

i was just trying to get the pre view before my classes for c, and now i am learning better c here than my classes ...

samyakjain
Автор

Harry bhai format to sare smj aa rhe h dhng se ❤️❤️❤️, par class me jo que dete h vo nhi bn rhe 😭😭😭😭😭

engg
Автор

Harry Bhai ( c++)+(Java)ka bhi tutorial bnao please 🤗

gouravj
Автор

I have a question sir. When should we use While loop and when Do While loop ? Plz answer as soon as possible. And your tutorials are very helpful. I am a regular viewer of your videos. Thanks !

avi
Автор

Harry bhai I am so sorry me apki videos py ziada comment ni kr pata waja ye h k me jo course krta hn uski saari videos phly download kr leta hn or phr aaram sy saari dekhta hn or saari Videos ko hmesha k lye save kr leta

rahuljonas
Автор

harry bhai aap jaisa tutor koi humhe mil jaye to batt ban jaye haha bat ban jaye

priyaranjanjha
Автор

You can make it more better by giving each kinda hard qsns at the end of every video about the very topic.

avayapokhrel
Автор

do while loop main pehele code exicute hoga fir condition check karega, but while loop main pehele condition check karega conditon sach hota hai to code check karega..this is the difference of do while and while loop

ultimateguitarist
Автор

#include<stdio.h>
int main()
{
int i=0;
while (i<10)
{
printf("%d\n", i);
i+=1;
}

return 0;
}

madhamitadas
Автор

one more diffcult example after every topic will improve the understanding just my opinion anyway ur doing great job

lakshyaagrawal