C_30 else if ladder in C | C Programming Tutorials

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

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

Connect & Contact Me:

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

More Playlists:

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

Examples r always awsm that u have taken mam 😂.

Rohit-oovd
Автор

14:20
void main()
{
char ch ;
printf("Enter a lowercase, upper case letter or a number : ") ;
scanf("%c", &ch) ;

if(ch>='A' && ch<='Z')
printf("%c is a uppercase letter", ch) ;

else if(ch>='a' && ch<='z')
printf("%c is a lowercase letter", ch) ;

else if(ch>='0' && ch<='9')
printf("%c is a number", ch) ;

else
printf("Invalid input") ;
}

madhumalipremarathna
Автор

One of the best teachers in the world.
I love your teaching...

karunakarchary
Автор

What an explanation, fall in Love with ur teaching mam♥️
Forget the world and connect with the teaching.
We indians will we thankful for gotten this gem❣️💫✨
Thankyou mam

tamiltrendyupdates
Автор

Ma'am your explanation is very everything is understanding for me.... thank you ma'am

aishwaryapujaraish
Автор

nice explaination. And the way of teaching nd the way of explaing nd that examples ur giving r just AWSOME.. Mam... im learning C from ur videos only mam.. THanks A LOT...

akhilareddy
Автор

Mam the example was a will never forget the else if ladder for this example....

sahariarmondal
Автор

perfect example for multiple conditions 😜😜😜 got it mam, else if concept cleared

travellerutkarsh
Автор

Your teaching and voice excellent mam

madhuvajjarala
Автор

Super mam your explain awesome👍 mam. all ways be 😊

sivadarling
Автор

#include<stdio.h>
int main()
{
char input;
printf("Give the input:");
scanf("%c", &input);
if(input>='A' && input<='Z')
printf("This is a upper case letter");
else if(input>='a' && input<='z')
printf("This is a lower case letter");
else if(input>=48 && input<=57)
printf("This is a number");
else
printf("Not a valid input");
return 0;
}

arpanmukherjeee
Автор

Jai Jenny ma'am for helping students

victors
Автор

i did this and it worked perfectly( used ascii, but we can also use string)



#include <stdio.h>
int main()
{
char a;
printf("type any character\n");
scanf("%c", &a);
if (a>=65 && a<=90)
{
printf("It is an upper case");
}
else if(a>=97 && a<=122)
{
printf("It is a lower case");
}
else if (a>=48 && a<=57)
{
printf("it is an integer");
}
else
{
printf("it is special characters");
}

}

noone
Автор

the example of real life scenerio hehehe. thats really funny

hanmadragoniod
Автор

Thanks alot mam for your amazing teaching and please make a video on assignment also mam please

bhargavipilli
Автор

Amazing 😮😮😮😮😊😊😊😊😊 teaching mam I am fan of you

Z.mahesh
Автор

I was daily wating fir u r class pls mam reply fast mam

TUCSARVINDKUMARS
Автор

Dear mam, your teaching was very easily understood but I am from Tamilnadu, so I don't know hindi that much, please continue to speak in English, and your fluency was so good .. this is my humble request...

wpqehrx
Автор

That's good teaching maim and absolutely I understood and what do You say that i better than understand but u r so good looking despite you are genius at least I know better maim thanks so much

ahmadshafique
Автор

I am mechanical student but I got interest in learning C language because of you only. I am watching all advertisement for you only

Shrikeshsalunkhe