#12: while Loop in C Programming | C Programming for Beginners

preview_player
Показать описание
In this video, we will learn about while loop in C Programming. Here, we will learn to use a while loop to repeat a block of code multiple times and then create a multiplication table.

Resources:

Timestamps:
00:00 - Start
00:31 - while Loop
05:01 - Create Multiplication Table
08:59 - do...while Loop
10:51 - while Vs. do...while Loop
11:53 - Programming Task
12:25 - Quiz

Revise your learning using our C App

Find Programiz elsewhere:

#whileloop #cprogramming #learnc #dowhile #loop
Рекомендации по теме
Комментарии
Автор

🔥Finding it Damn Hard to Understand C Programming?
Learn to code—the right way—with interactive lessons, quizzes & challenges. Build a strong programming base; it's IMPORTANT!

programizstudios
Автор

I was reading a programming book without understanding much, but the way she explains it is amazingly simple and easy, thank you very much, you saved my learning, now I'm more interested in programming

aderitobentoderi
Автор

I can watch these videos all day
The way she explains all these ao sweetly and everything is short and 1precise thank you for this beautiful playlist👍

metaMorph
Автор

// Online C compiler to run C program online
//The program that can display a multiplication table with decrement value using while loop.
#include <stdio.h>

int main() {
int number;
printf("Enter the number: ");
scanf("%d", &number);

int count=10;
while (count >= 1)
{
int product = count * number;
printf("%d x %d = %d\n", number, count, product);
count = count-1;
}


return 0;
}

Girma_Chew
Автор

Before studying my lectures notes, I must watch these tutorials because they make my studies easy programiz

bloomcreation
Автор

Q. Which of the following causes an infinite loop?
1. while (1) {...}
2. int i = 3;
while (i < 4) {...}
3. int i = 3
do {
...} while(i < 4)
4. All of the above

programizstudios
Автор

As always great crystal clear explanation! Thank you very much for everyone who are making this happen.

ntnmfbu
Автор

Your way of teaching is so beautiful. Thank you so much!

nihatdonmzov
Автор

the best c tutorial in youtube, thanks a lot Padma 😍🙏👌

hdidev
Автор

I'm watching from Guyana 🇬🇾 and I find programming very difficult but watching your videos make it looks much simpler based on the way you explain 💯

LacruzRose-iqxq
Автор

you have talent to explain c programming

irambonaaime
Автор

int main() {
int number;
printf("Enter the Number: ");
scanf("%d", &number);
int count = 10;

while (count >= 1){
int product = number * count;
printf("%d*%d =%d\n", number, count, product);
count -= 1;

}

return 0;
}

sakthimuruganr
Автор

Extremely useful lectures ❤️🔥😀
By how much time all of advanced C programming course will be completed?

hridhanpatel
Автор

These are amazing! Thank you for being so incredibly clear.

JenniferPChung
Автор

look you've improved me so i really love your channel and i just wanna say God bless you deeply!!

ucheemmanuel
Автор

For
To terminate the loop condition should be false and in this code value is always true hence all of these options are i finite loops...
So the answer is option D

PicturePerfectDiaries
Автор

this was a harder concept to teach but you did an excellent job

seabasschukwu
Автор

The "do {} while var;" loop is beautiful 🤩

HellensAngels
Автор

Thank God for your channel and videos 💪🏽🔥🔥❤

pradaofficial
Автор

Thank you, you guys made c more fun and easy to understand!

faisal_tarshon