C_29 Nested If in C | C Programming Tutorials

preview_player
Показать описание
In this video, I have discussed the nested if control statement in C | Syntax, Working, Flowchart, Examples, Program

*******************************************

Connect & Contact Me:

*********************************************

More Playlists:

#cprogramming #jennyslectures #programming #clanguage #controlstatements #nestedif
Рекомендации по теме
Комментарии
Автор

The help you have rendered with these videos knows no bounds. Thank you so much, Tutor Jenny

tutorijy
Автор

first time in 5 years, I am getting most of my concepts clear. this series is awesome.

akshaychavan
Автор

Thanks a lot, I am a 10th grader and I have IT classes, in school and we were learning c programming I missed a class
in which nested if statement was taught...I forgot to ask my teacher and tomorrow is my exam!!!! Your explanation worked wonders for me...Thanks a ton!!!!

shaivistuti
Автор

Mam I didn't even know what is c
But mam with the support of u I learnt every basics things about programs

reena
Автор

#include<stdio.h>
int main(){
int a, b, c;
printf("Enter the three numbers:");
scanf("%d %d %d", &a, &b, &c);
if(a>b)
{
if(a>c)
printf("%d is largest", a);
else
printf("%d is largest", c);
}
else
{
if(b>c)
printf("%d is largest", b);
else
printf("%d is largest", c);
}
return 0;
}

rohitsunariya
Автор

I never learnt any thing from my lectures every thing learnt from your videos thank you mam

bommaniraveendrababu
Автор

Thank you so much Jenny, you just simplify my cs50 course. This is so helpful and i love your traditional way of teaching.

justicejuwa
Автор

Mam u are genius I does not understand the matter of nested if statement. Then I watch your video. Even I confidently say that I understand the matter. Thank you so mach mam

ankushmondal
Автор

the best tutor in the world, God bless u dear Jenny

agboemmanuella
Автор

Mam you are Explanation is Good on c-programming i am easily understand that concept Nested if Thank you mam you are teach very well.

arifpatan
Автор

U usually gives explanation with ur heart core thanks mam

athletesone
Автор

Awesome video, keep up the great work! :)

ComputerScienceSimplified
Автор

You are very experienced teacher so good teaching thank you ma'am.

deepakumar
Автор

madam if we use two conditions by using and operater in first if statement then what is the use of else in first parenthesis of if statements bcoz in first if statement is false it will jump to else after first parenthesis so pls can u clarify this ..

Darshan.R
Автор

its for beginner what about advance Maam
your teaching method is supper say bahot uper.

graphicslearn
Автор

really u are good at programing i seen all vedios of u it is very use full to me

prashanthmudunuri
Автор

Mam, when you have used same if for both conditions if the age condition is false i.e less than 50 then the salary will be incremented 5000 but it should be only 3000 know.

suseelamutina
Автор

Hello ma'am
this is quite useful series
your videos are the best i have never seen before like this type of explanation of each topic
And 1 question how many sweaters and jersies do you have ??

vrushabhdabhi
Автор

Aoa Your Teaching Method is so good 👍

tayyabbashir
Автор

//Write a C program to find maximum between three numbers.

#include<stdio.h>
int main()
{
int a, b, c;
a=b=c=0;
printf("Enter 1st number: ");
scanf("%d", &a);
printf("Enter 2nd number: ");
scanf("%d", &b);
printf("Enter 3rd number: ");
scanf("%d", &c);

if(a>b)
{
if(a>c)
{
printf("%d is greater", a);
}
else
{
printf("%d is greater", c);
}
}

else

{

if(b>c)
{
printf("%d is greater", b);
}
else
{
printf("%d is greater", c);
}
}
}




Thank you mam :) for your Efforts....
Love from Khammam..

naveen
join shbcf.ru