Switch Case Control Statements In C: C Tutorial In Hindi #11

  Рет қаралды 947,054

CodeWithHarry

CodeWithHarry

Күн бұрын

Пікірлер: 1 700
@CodeWithHarry
@CodeWithHarry 5 жыл бұрын
Hope sab samajh me aa raha hai! Is this course going slow or fast????? Please please reply me??? I am getting mixed feedback. Thanks a lot!
@AdarshKumar-lf1kf
@AdarshKumar-lf1kf 5 жыл бұрын
Perfect ..
@AdarshKumar-lf1kf
@AdarshKumar-lf1kf 5 жыл бұрын
Notes kb se aayegi
@RiyaSingh-eg9qr
@RiyaSingh-eg9qr 5 жыл бұрын
its going normal
@jyotitiwari3134
@jyotitiwari3134 5 жыл бұрын
Sir array aur pointer thoda aur brief description De dijiye Jisey bade program bhi try kr sake
@_inspireverse___
@_inspireverse___ 5 жыл бұрын
Very nice explanation sir? Mere saare doubts clear ho gaye. Thank you sir!
@dnyaneshwargaikwad6788
@dnyaneshwargaikwad6788 3 жыл бұрын
{ int score; printf("Enter your score "); scanf("%d",&score); switch(score) { case 12: printf("your score is 12"); break; case 16: printf("your score is 16"); break; default: printf("your score is not 12 or 16"); } return 0; }
@NitinKumar-gq7yr
@NitinKumar-gq7yr 2 жыл бұрын
#include int main() { int day_no; printf("enter day_no "); scanf("%d",&day_no); switch (day_no) { case 1: printf("monday "); break; case 2: printf("tuesday "); break; case 3: printf("wednesday "); break; case 4: printf("thrusday "); break; case 5: printf("friday "); break; case 6: printf("saturday "); break; case 7: printf("sunday "); break; default : printf("input must be between 1-7 "); } return 0; }
@pagalgameryt3734
@pagalgameryt3734 Жыл бұрын
Bro give me your number please
@s_caat_c1702
@s_caat_c1702 Жыл бұрын
Great
@rohanSubTopic
@rohanSubTopic Жыл бұрын
bahut cute hey
@abentertainment7475
@abentertainment7475 Жыл бұрын
😊
@NupurVyas-yr5fk
@NupurVyas-yr5fk Жыл бұрын
Mujhe toh kuch samjh nhi aara😢😢😢😢
@ls12394
@ls12394 Жыл бұрын
Code using Switch for Speed of vehicle #include int main() { int speed; printf("Enter your speed "); scanf("%d", &speed); switch (speed) { case 40: printf("Your speed is 40"); break; case 50: printf("Your speed is 50"); break; case 60: printf("Your speed is 60"); break; default: printf("Your speed is not 40, 50 or 60"); } return 0; }
@OG_Yash10
@OG_Yash10 11 ай бұрын
@roshangaming2772
@roshangaming2772 5 ай бұрын
Galat h bhai
@factsandknowledge8954
@factsandknowledge8954 3 ай бұрын
@@roshangaming2772 KYA
@KrishnaGoswami-r6k
@KrishnaGoswami-r6k 3 ай бұрын
​@@roshangaming2772 kese ?
@KARTIKOGYT
@KARTIKOGYT 11 күн бұрын
​@@roshangaming2772hmm isme case 1,2,3 ana chaiyeh instead of 40,50or60.
@vindeshshukla4079
@vindeshshukla4079 Жыл бұрын
#include int main() { int marks; printf ("enter your marks "); scanf("%d",&marks); Switch (marks) { Case 45: printf("your marks is 45"); break; Case 99: printf ("your marks is 99"); break; default: printf ("your marks is not 45 and 99"); break; } return 0; }
@shubhamjaiswal2322
@shubhamjaiswal2322 5 жыл бұрын
Bhai C padhi hai but use refresh krni thi but aap padha rhe ho toh shuru se padhne me jyada maja aa raha hai Thank you keep it up.
@CodeWithHarry
@CodeWithHarry 5 жыл бұрын
Welcome bro!
@nizamuddinhameed5249
@nizamuddinhameed5249 Жыл бұрын
#include int main() { int shoes; printf("Guess the number of pairs of shoes i have"); scanf("%d", &shoes); switch(shoes) { case 2: printf("You've 2 pairs of shoes); break; case 3: printf("You've 3 pairs of shoes); break; case 4: printf("You've 4 pairs of shoes); break; default: printf("You've give the wrong answer") } }
@chaudharyshoeb8459
@chaudharyshoeb8459 5 жыл бұрын
Hello brother, You r doing a great job. As per your question ,The course is going fast but then to getting it understand by repeating the video My Switch program #include int main() { int marks; printf("enter your marks "); scanf("%d", &marks); switch (marks) { case 10: printf("your marks is 10 "); break; case 20: printf("your marks is 20 "); break; default: printf("your mark is not 10,20"); } return 0; }
@sineparadox98
@sineparadox98 3 жыл бұрын
Harry bhai aapke teaching ka tareeka ek dum unique and elementary hai. Aap koi bhi concepts samjhate ho to bohot achche se aur ideal proof ke saath teach karate ho usko easily breakdown karke. Thank you so much.
@uditnathprasad5612
@uditnathprasad5612 7 ай бұрын
#include int main() { int temp; printf("Enter the temperature in degree Celsius"); scanf("%d",&temp); switch(temp) { case 40: printf("Hot "); break; case 10: printf("Cold "); default: printf("Invalid input"); } return 0; }
@NetworkingBasic-j4v
@NetworkingBasic-j4v 2 ай бұрын
you forgot to include break
@apt7660
@apt7660 9 күн бұрын
Yeah he forgot to put break after case 10
@hetmalani1795
@hetmalani1795 Жыл бұрын
#include #include int main() { Int age; printf("enter age:"); Scanf("%d",age); Switch(a) { case 20: printf("they can drive"); break; case. 15:printf("they can enjoy "); break; Case 22: printf("they can marrige"); break; Defaulat : Printf(" they can nothing") } Return 0; }
@nikhilraj1842
@nikhilraj1842 5 жыл бұрын
// Challenge accepted /* author:Nikhil Raj purpose:To learn Switch Cases date:18/06/2019 */ #include int main(){ int kitnepanipuris; scanf("%d",&kitnepanipuris); switch (kitnepanipuris) { case 0: printf("Bhaiya 10 ke "); break; case 2: printf("Thode aur khilao "); break; case 4: printf("Thik hae bhia kitna hua "); break; default: printf("Ache Pani puri hae"); break; } return 0; }
@ankitsatyal8512
@ankitsatyal8512 5 жыл бұрын
😂😂🙏🏻🙏🏻🙏🏻
@harshittripathi5557
@harshittripathi5557 5 жыл бұрын
osm bruh🤣🤣🤣🤣
@nikhilflautist
@nikhilflautist 5 жыл бұрын
wonderful bro
@AkashGupta-uk2ld
@AkashGupta-uk2ld 5 жыл бұрын
lmao it's not valid......
@techymind1378
@techymind1378 4 жыл бұрын
bhai tune starting me printf me kuch likha hi nhi
@Hariom-ix5wr
@Hariom-ix5wr 2 жыл бұрын
#include int main() { Char ch; printf("enter any ch"); scanf("%c",&ch); switch (ch); { Case'a'; printf("vowel"); break; case'e'; printf("vowel"); break; case'i'; printf("vowel"); break; Case'o'; printf("vowel"); break; Case'u'; printf("vowel"; break; dafacult; printf ("consonant"); return 0; }
@ajaymohankar5912
@ajaymohankar5912 4 жыл бұрын
#include int main() { int age,percent; printf("ENTER YOUR AGE BETWEEN 10 TO 15 "); scanf("%d",&age); switch (age) { case 10: printf("you should be in 5th class now "); break; case 11: printf("you should be in 6th class now"); break; case 12: printf("you should be in 7th class now"); break; case 13: printf("you should be in 8th class now"); break; case 14: printf("you should be in 9th class now"); break; case 15: printf("you should be in 10th class now"); break; default: printf("i have no information about this age class"); break; } return 0; }
@abdularhamjamal8957
@abdularhamjamal8957 3 жыл бұрын
percent variable is useless....you didn't use it ..in 4th line (int age,percent;) should be (int age;)😄
@1plusspace568
@1plusspace568 3 жыл бұрын
should be in 4th line Scanf("%d", &age,& percent);
@CEB-AMITKUMAR
@CEB-AMITKUMAR 2 жыл бұрын
Bro If by default has executed then break no needed I think 🤔
@NaveenSharmaJii
@NaveenSharmaJii 2 жыл бұрын
This program is not executed
@Sunny-qy1fj
@Sunny-qy1fj 2 жыл бұрын
you need to take another switch in every case and put percent according too your mind
@girishdhakar401
@girishdhakar401 Жыл бұрын
#include int main(){ int runs; printf("how many runs scored:"); scanf("%d",&runs); switch(runs){ case 50: printf("virat played a fabulous inning of 50 runs "); break; case 100: printf("virat played a fabulous inning of 100 runs "); break; default: printf("virat neither scored 50 nor 100 runs "); } return 0; }
@mridulamal7748
@mridulamal7748 Жыл бұрын
#include Int main( ) { Int age; Printf("enter your age :"); Scanf("%d",&age ); Switch(age ){ Case 18 : Printf(" preadult "); break Case 10: Printf("young"); break; Case 60: Printf("old"); default : Prrintf("invalid age "); } return 0; }
@Basigma-g3e
@Basigma-g3e 2 жыл бұрын
sir i am from pakistan and matric class student.sir your teaching pattern is so clearly.clearly that way because you teach everthing that could be important to us with the help of your videos you teaching your subscriber everything that they want and free of cost .this is one of the best platfarm where they founds every videos
@nikhilanand3447
@nikhilanand3447 2 жыл бұрын
Bro your English tells us that you are Pakistani
@professor2250
@professor2250 2 жыл бұрын
@@nikhilanand3447 bro your face tells us you are Indian
@anshumanraturi
@anshumanraturi 2 жыл бұрын
@@nikhilanand3447 not ethical for anybody to troll anyone for his/her second language. English doesnot bring wisdom u proved it. May u get wisdom.
@parmardharmik4731
@parmardharmik4731 2 жыл бұрын
@@nikhilanand3447 bro tuje itani hi ENGLISH aati hai to tu jake usse sikha Tere ma -baap ko teri jitani English aati hai kya??????????
@memematerial4205
@memematerial4205 2 жыл бұрын
Welcome bro
@virajdhakane440
@virajdhakane440 2 жыл бұрын
#include int main() Char ch; frintf("enter charactor); Scanf("%c",&ch); Switch(ch) { case 'a' : printf("vowel"); break; default:printf("uconsoment"); } return 0; }
@arjunkendre4656
@arjunkendre4656 5 жыл бұрын
#include int main() { int age; scanf("%d ", &age); printf("enter your age ",age); switch(age) { case 2:printf("your age is 45"); break; case 3:printf("your age is below 30"); break; default:printf("your age is not match"); } return 0; } My code I am beginner
@akashagrawal2645
@akashagrawal2645 3 жыл бұрын
🙄 if person input 2 then it will show your age is 45 I think so you should improve this one 🙏
@nileshrajbhar9263
@nileshrajbhar9263 3 жыл бұрын
Printf will come before scanf u should improve this thing also 🙏🙏😊😊
@nileshrajbhar9263
@nileshrajbhar9263 3 жыл бұрын
I am also a beginner 👍👍🤘🤞
@SUNNYVLOGS812
@SUNNYVLOGS812 3 жыл бұрын
Bro if a person input his /her age 2 then account to your program he's 45 year old :(
@24_cst3_eshagunjekar7
@24_cst3_eshagunjekar7 3 жыл бұрын
As a beginner I was unable to understand .But your vidoes are seriously soo good, very easy to understand ❤ Also thankyou for your vlogs.
@mraduldixit1736
@mraduldixit1736 Жыл бұрын
/* For check month is Jan,Feb or any other month from the year */ #include #include int main() { int mth; printf("Enter Month= "); scanf("%d",&mth); switch(mth) { case 31: printf("entered month is Jan"); break; case 28: printf(" Its Feb "); break; default: printf("Any other month in the year "); } getch(); return 0; }
@nikitaraut2747
@nikitaraut2747 Жыл бұрын
Challenge accepted Harry I had still seen 10 videos but they are mind blowing .I think no one is there as you Harry You r d best coder I had ever seen
@Mrhit2o2
@Mrhit2o2 Жыл бұрын
#include int main() { int class; printf("Enter your class "); scanf("%d"&class); switch(class){ case 3; printf("your class is 3"); break; case 5; printf("your class is 5"); break; default; printf("you are not 5 or 3"); } return 0; }
@it-27utkarshawarbhe28
@it-27utkarshawarbhe28 2 жыл бұрын
#include int main() { int num; printf("Enter number you want"); scanf("%d",&num); switch(num==num/2) { case 0: printf("It is Even Number"); break; default: printf("It is Odd number"); break; } return 0; }
@nihaltabbalaji5340
@nihaltabbalaji5340 2 жыл бұрын
#include Int main() { Int age, weight; Printf("enter the age "); Scanf("%d",age); Printf("Enter the weight "); Scanf("%d",weight); Switch (age) Case14 Printf(" the age is 14"); Switch( Weight) Case 27 Printf("Enter the weight"); Break; Default Printf("the age and weight are match"); }
@preetmonga436
@preetmonga436 2 жыл бұрын
Code for checking whether a triangle is right angled or not #include int main() { int A,H,P,B; printf("Enter the length of sides of triangle Enter larger length first "); scanf("%d%d%d",&H,&B,&P); A = H*H - (B*B +P*P); switch(A) { case 0 : printf("Triangle is Right angled triangle"); break; default : printf("Triangle is not Right angled"); } return 0; }
@yashshukla9590
@yashshukla9590 Жыл бұрын
what if i entered base insted of hypotenuse in the first place
@preetmonga436
@preetmonga436 Жыл бұрын
@@yashshukla9590 that's why i wrote their to enter larger side first i.e. hypotenuse
@dorothy4407
@dorothy4407 Жыл бұрын
Ur code means if area is 0 it's a right angled?? That doesn't make sense, explain pls
@preetmonga436
@preetmonga436 Жыл бұрын
@@dorothy4407 Area is not used. A is not area but a variable to check validity of Pythagoras theorem. We can add another case for that if the sides zero that means it is a point.
@titlegamerz8156
@titlegamerz8156 Жыл бұрын
This code won't show any output 👇🏻 This is the right code #include int main() { int A,H,P,B; printf ("enter the length of the sides of a triangle First enter the largest ones length "); scanf("%d,%d,%d",&H,&P,&B); printf("A=%d ",H*H-(P*P+B*B),&A); switch(A) { case 0: printf("this is a rightangled triangle "); break; default: printf("this is not a right angled triangle"); } return 0; }
@Simran-dm3ge
@Simran-dm3ge Жыл бұрын
{ int weight; printf("Enter your weight "); scanf("%d", &weight); switch (weight) { case 10: printf("You can go for moonwalker ride "); break; default: printf("Your weight is not appropriate, you cant go for the ride "); break; } }
@tuneflix7252
@tuneflix7252 2 жыл бұрын
#include int main () { int a; printf("your roll no is ") ; Scanf("%d", &a) ; Switch (a) { Case 1: printf(" Your name is prachi") ; break; Case 2: printf(" Your name is sakshi") ; break; Case 3: printf(" Your name is Tushar") ; break; default : printf("roll no is incorrect") ; break; } return 0; }
@virtual_space399
@virtual_space399 2 жыл бұрын
Bhai app kon se code editor ka use krte h
@tuneflix7252
@tuneflix7252 2 жыл бұрын
@@virtual_space399 Visual Studio
@sine-sine4530
@sine-sine4530 2 жыл бұрын
Pura course kar diya apne?
@sjgaming2911
@sjgaming2911 11 ай бұрын
Simple code of Switch statement:- #include int main() { int age; printf("Enter Your Age: "); scanf("%d", &age); switch (age) { case 17: printf(" You are not eligible for Vote."); break; printf(" "); case 18: printf("You are elidigble for vote.");break; printf(" ") ; default : printf("Please Enter 17 and 18 only. ");} printf(" ") ; return 0; }
@NZM-o8i
@NZM-o8i 3 ай бұрын
#include int main(){ int speed; printf("Enter the speed of the car:"); scanf("%d",&speed); switch(speed){ case(30): printf("The speed of the car is 30km/h "); break; case(40): printf("The speed of the car is 40km/h "); break; case(50): printf("The speed of the car is 50km/h "); break; default: printf("The speed is neither 30,40,50km/h"); break; return 0; }
@imamuddinansari2917
@imamuddinansari2917 5 жыл бұрын
aap itna achhe se smjhate h fir bhi aap ke video pr likes kam q aate h ? aapke sabhi videos superb h 👌👌👌👌👍👍👍👍
@mohitgupta-ks4em
@mohitgupta-ks4em 3 жыл бұрын
kyo ki sir hindi main padate hi
@arjitdubey-r2f
@arjitdubey-r2f 11 ай бұрын
#include int main() { int a,wt printf("enter the weight"); scanf("%d"&wt); a=50; switch(a){ case 50: printf("weight is ok"); break; case 80: printf("need special diet plan"); break; case 100: printf("over weight"); break; default; return 0; }
@iitduniya
@iitduniya 10 ай бұрын
Kon kon 2024 me dekh raha hai❤❤
@Xianshome1505
@Xianshome1505 7 ай бұрын
Me also!
@YugankUpadhyaya-pp4lu
@YugankUpadhyaya-pp4lu 7 ай бұрын
Maaah
@SulekhaNandan-iz9yf
@SulekhaNandan-iz9yf 6 ай бұрын
Me
@ayeshafaisal1058
@ayeshafaisal1058 6 ай бұрын
Mee
@DCP88
@DCP88 6 ай бұрын
me
@c_56_rushikeshsunilpingale65
@c_56_rushikeshsunilpingale65 2 жыл бұрын
#include int main() { int number; printf("enter your value/n"); scanf("%d",&number); switch (number) { case 1: printf("you have passed in maths "); break; case 2: printf("you have passed in science"); break; case 3: printf("you have passed in both in maths and science") ; break; default: printf("you are not elligible to seat in the exam"); break; } }
@omkarsawant939
@omkarsawant939 Жыл бұрын
Bro muze activation extension nahi dikha raha hai kya karu
@PriyaGupta-sg4sm
@PriyaGupta-sg4sm 2 жыл бұрын
/*a program to demonstrate the usage of switch and case statements 1) the age should either be 16,25 or 36 2) the work experience must be 15, 20 or 25 years respectively */ #include int main() { int age, exp ; printf("enter your age : "); scanf("%d",&age); printf("enter your experience (in years) "); scanf("%d",&exp); switch (age){ case 16: printf("your age is 16 "); switch (exp){ case 15: printf("YOU ARE ELIGIBLE !"); break; default: printf("YOU ARE NOT ELIGIBLE, SORRY !"); } break; case 25: printf("your age is 25 "); switch (exp){ case 20: printf("YOU ARE ELIGIBLE !"); break; default: printf("YOU ARE NOT ELIGIBLE, SORRY !"); } break; case 36: printf("your age is 36 "); switch (exp){ case 25: printf("YOU ARE ELIGIBLE !"); break; default: printf("YOU ARE NOT ELIGIBLE, SORRY !"); } break; default: printf("not aligible since your age is not 16, 25 or 36"); } return 0; }
@arunrana-ch2zd
@arunrana-ch2zd Жыл бұрын
the only that doesn't fit is that if we enter age 16 code will only sat that you are eligible particularly for exp 15 but not for above (if we are over looking the fact that how can a 16 year old have exp of 15 years lol ) also i have a question cant we use ,= these in switch statements ? btw kind efforts 🙂
@NaachMore
@NaachMore Жыл бұрын
#include int main() { int a; printf("Enter a="); scanf("%d",&a); switch(a) { case 1: printf("value is 10"); break; case 2: printf("value is 20"); break; default: printf("not found"); break; } return 0; }
@NaachMore
@NaachMore Жыл бұрын
#include int main() { int days; printf ("enter the number of days="); scanf ("%d",&days); switch(days) { case 30: printf(" it can be april, june, aug"); break; case 31: printf(" it can be jan, mar, july"); break; case 29: printf(" it can be feb"); break; default: printf(" it is something"); } return 0; }
@divyashreechandrana9560
@divyashreechandrana9560 2 жыл бұрын
// Write a C program to check whether a number is positive, negative or zero using switch case. #include int main () { int a; printf(" enter a number: "); scanf("%d", &a); switch (a > 0) { case 1: printf("positive"); break; case 0: switch (a
@utkarshpankaj5
@utkarshpankaj5 2 жыл бұрын
Bhaiya/didi aapne pehle lagaya hai vo last me hota hai
@ashish4k07
@ashish4k07 2 жыл бұрын
@@utkarshpankaj5 its not needed actually instead it could be like this printf("Enter a number:"); scanf("%d",&a); this will look good.
@deepsahil__
@deepsahil__ 2 жыл бұрын
@@utkarshpankaj5 that's upto you, you can use it either in the start or middle or last 🙋‍♂️
@Anasboss744
@Anasboss744 2 жыл бұрын
Cas
@pranitdaphale6409
@pranitdaphale6409 2 жыл бұрын
Char a Printf("enter your name"); Scanf ("%d",&a); Switch (a) { Case(sky): Printf("your name is sky"); Break; Default Printf("your age is not defined"); } Return 0; }
@Hatimtai007
@Hatimtai007 2 жыл бұрын
%c
@adityatripathi2178
@adityatripathi2178 3 жыл бұрын
// code to determine your permits according to your age// # include int main() { int age; printf("Enter your age "); scanf("%d", &age); switch (age) { case 20 : printf("You can make your own decions "); // break; case 18 : printf("You can drive a vehicle "); // break; case 15: printf("You can go out with friends "); // break; case 10: printf("You can watch a movie "); // break; case 5: printf("You can interact with people "); break; default: printf("Are you even born "); break; } return 0; }
@BeingAllinOneLive
@BeingAllinOneLive 3 жыл бұрын
meme material type code
@BeingAllinOneLive
@BeingAllinOneLive 3 жыл бұрын
my parents use this code in my real life
@kon_humein
@kon_humein 2 жыл бұрын
Waah kya code hai🤣🤣
@Da_bing77-d77
@Da_bing77-d77 8 ай бұрын
#Include Int main() { Int x; printf("enter a number"); scanf("%d",&x); Switch(x) Case 1:printf("Monday"); break; case 2:printf("Tuesday"); break; case 3:printf("Thursday"); break; case 4:printf("Friday"); break; case 5:printf("Saturday"); break; case 6:printf("Wednesday"); break; case 7:printf("Sunday"); break; default : printf("not a valid day");
@achyutagrahari2008
@achyutagrahari2008 2 жыл бұрын
/* Date-5/1/2022 Author Name-Achyut Agrahari Purpose=for Learning Code The code is about switch satements*/ int main() { int a; printf("Cutoff For Admission In BCA " ); printf("Enter your category code "); printf("Enter 1 for unreserved category "); printf("Enter 2 for EWS category "); printf("Enter 3 for OBC category "); printf("Enter 4 for SC/ST category "); scanf("%d",&a); switch (a) { case 1: printf("Enter your marks "); scanf("%d",&a); if (a>=160) { printf("you are selecteted "); } else printf("Wait for next cutoff "); break; case 2: printf("Enter your mark "); scanf("%d",&a); if (a>=150) { printf("you are selecteted "); } else printf("Wait for next cutoff "); break; case 3: printf("Enter your mark "); scanf("%d",&a); if (a>=142) { printf("you are selecteted "); } else printf("Wait for next cutoff "); break; case 4: printf("Enter your mark "); scanf("%d",&a); if (a>=125) { printf("you are selecteted "); } else if (a>=100) { printf("you are selecteted through ST catgory "); } else printf("Wait for next cutoff "); break; default: printf("Error "); } }
@clashchamp410
@clashchamp410 2 жыл бұрын
Scan f kaha he
@OmjiDwivedi-ft6qe
@OmjiDwivedi-ft6qe 10 ай бұрын
Mja aaa gya 💥💥
@Tech-learner-45
@Tech-learner-45 5 ай бұрын
@MdShahid-rb8nc
@MdShahid-rb8nc 2 жыл бұрын
CHALLENGE ACCEPTED #include int main() { int kele,tarbooz; printf("kitne kele chiye "); scanf("%d",&kele); printf("tarbooz bhi khayega kya "); scanf("%d",&tarbooz); switch (kele) { case 6: printf("badhiya h khao "); break; case 12: printf("kam khaya kar be "); break; case 50: printf("janwar hi marega tu "); switch (tarbooz) { case 10: printf("gandu he kya "); break; default: printf("jeele apni zindagi "); break; } break; default: break; } return 0; }
@GameGuftuGu
@GameGuftuGu 2 жыл бұрын
Good bro.and very funny code 👏🤣
@ananyashrivastav8298
@ananyashrivastav8298 2 жыл бұрын
hahahhahahahaahhhahhahhahahaha
@shubhamjaiswar7542
@shubhamjaiswar7542 2 жыл бұрын
Hahahaha 😂 Nice code ..
@jaykoranga4859
@jaykoranga4859 2 жыл бұрын
Funny bro
@SadamHussain-zj9ei
@SadamHussain-zj9ei 5 жыл бұрын
Hi Sir, Great Explanation of switch statement. Thank you so much.
@CodeWithHarry
@CodeWithHarry 5 жыл бұрын
Thanks Sadam!
@SadamHussain-zj9ei
@SadamHussain-zj9ei 5 жыл бұрын
Sir, aap awar exercise banaye ge. Bahut maza hai ex main.
@hindishorts593
@hindishorts593 4 жыл бұрын
@@CodeWithHarry Harry bhaiya jo aapne practice ke liye work diya tha c program ka jisame : math=15, science=15, math& science=45 prize Dena tha Value me math science dalne par error Bata Raha hai but nomber dalne par run karta hai ye mujhe samajh me nahi aa Raha hai Please mujhe jarur bataiyega
@karateandextratips4487
@karateandextratips4487 4 жыл бұрын
@@hindishorts593 same here bro
@karateandextratips4487
@karateandextratips4487 4 жыл бұрын
@@hindishorts593 pls solve this problem bhai
@rohanmasne1209
@rohanmasne1209 3 жыл бұрын
playlist 1. beliver 2.despacito 3.seniorita 4.peaches main() { int n ; printf(" enter the song number that you like "); scanf("%d",n); switch(n) { case 1 : printf(" beliver"); break; case 2 : printf(" despacito"); break; case 3 : printf(" seniorita "); break; case 4: printf(" peaches"); break; default : printf(" sorry , 4 songs available "); break; }
@prathamkhatri3969
@prathamkhatri3969 2 жыл бұрын
#include int main() { int a ; printf("what is your class "); scanf("%d" ,&a); switch (a) { case 1 : printf("your class is 1"); break; default: printf("you are not in 1 class"); } return 0; }
@rishabsharma5521
@rishabsharma5521 3 жыл бұрын
Hey Harry I'm literally watching your videos and actually it's easy to learn and I can easily implement in programs.
@manishyadav-lz1hi
@manishyadav-lz1hi Жыл бұрын
#include int main() { int roll; printf("enter your roll "); scanf("%d", &roll); switch (roll) { case 1: printf("congratulations! you pass the entrance exam "); break; case 2: printf("you failed all the best for next time "); break; default: printf("sorry we can not recognize you "); } return 0; } i am so late but i understand big brother what you teach us🥰🥰😍
@ashishbalyan835
@ashishbalyan835 3 жыл бұрын
Aapky video dekh kr dobra dekhne ky jrurat he nhi pdti 😂 I make a lot of program for my xgf in fun way this is just like game 😂 I I'll injoy your every video 🥰and programming is so funny also 😂😂
@los_pollos_hermanos_
@los_pollos_hermanos_ 3 жыл бұрын
Beta aap galat platform par aa gaye ho. Aap whitehat junior par hi seemit rahe... Aur itna na hi hase toh behtar..
@luckynarayani4604
@luckynarayani4604 Жыл бұрын
H.W. : at 17:53 #include int main() { int choice; printf("ENTER YOUR CHOICE: "); scanf("%d",&choice); switch (choice) { case 1: printf("Your choice is good.");break; case 2: printf("Your choice is better.");break; case 3: printf("Your choice is best.");break; default: printf("INVALID CHOICE"); } return 0; }
@swagatamhazra1910
@swagatamhazra1910 3 жыл бұрын
Harry sir You teach better than my college college professor ♥️😀
@bharatsinghpatel5086
@bharatsinghpatel5086 3 жыл бұрын
Abhi rukho iska screenshote aapke sir ko deta hu.. 😂
@uvutkarshverma
@uvutkarshverma 3 жыл бұрын
@@bharatsinghpatel5086 ha bhai de de sir ki burayi but harry rocks
@akib_zaved7169
@akib_zaved7169 3 жыл бұрын
@@uvutkarshverma 😂😂😂
@mkstates6246
@mkstates6246 4 жыл бұрын
Sir aap bahut clearly samjhate jo thank you sir 🙏🏻
@sauravkumarsingha5991
@sauravkumarsingha5991 Жыл бұрын
I am really new in this batch. I didn't have a tiny prior knowledge on the language. I have started watching last week. whatever I have learnt till now, its for you. Thank you. My code: #include int main() { int choice; printf("welcome to the \'15 din me paisa double Bank\' "); printf("choose an option "); printf("1. Balance Inquiry "); printf("2. Cash Deposite "); printf("3. Cash Withdrawl "); printf("4. Exit "); scanf("%d", &choice); switch (choice) { case 1: printf("Your balance is 112350365.00 "); break; case 2: printf("Press your account number "); break; case 3: printf(" Savings Current "); break; default: printf("Thank you for trusting us "); } return 0; }
@iamstudying389
@iamstudying389 11 ай бұрын
pov: you are learning your first language in your semester break
@Taruunn25
@Taruunn25 3 ай бұрын
Include Int (main) [ Int name; Printf("enter the name"/n); Scanf("%d/n" , &name); Switch Case tanu; Printf("your name is tanu/n"); Break; Default Printf("your name is tanu"); Default (
@mrnavdip9560
@mrnavdip9560 3 жыл бұрын
Thanks you sir, my dream is one day I'll in cyber security and I never forget in my life🔥❤️ Your every lecture are very useful for all student and you are god for me.
@geteverything8252
@geteverything8252 2 жыл бұрын
Mere liye bhi yaar harry bhai kya padate hai yaar vo mere liye bhagwan hai jindagi mai ek bar jarur milunga 🙏
@Hyd35
@Hyd35 2 жыл бұрын
Bro to get into cyber security what else i have to know i mean which language i has to study. And what else?
@mrnavdip9560
@mrnavdip9560 2 жыл бұрын
@@Hyd35 c++ , py. ect..
@Hyd35
@Hyd35 2 жыл бұрын
@@mrnavdip9560 thankyou😇
@geethabhute4834
@geethabhute4834 Жыл бұрын
#include int main(int argc, char const *argv[]) { int num; printf("Guess a Number between 1 -10 "); printf("Enter your Number "); scanf("%d", &num); switch (num) { case 3: printf("The Number is 3 "); printf("Congratulations you have guessed a right number!"); break; case 5: printf("The Number is 5 "); printf("Congratulations you have guessed a right number!"); break; case 7: printf("The Number is 7 "); printf("Congratulations you have guessed a right number!"); break; default: printf("No you have entered a wrong number! "); break; } return 0; } Thank U for Teaching in this easy manner.
@manishKumar-tl2ee
@manishKumar-tl2ee 4 жыл бұрын
if i didn' t used the break command, then default will be executed , that's seems logical. but why other cases are also executed in output.They should not be executed because , how does one entry can satisfy the conditions of all case.??????
@abdussamipatel7901
@abdussamipatel7901 4 жыл бұрын
When we don't use break... It doesn't mean it's satisfying remaining cases.... It just executes all statements... As a result, anything inside printf() function display on terminal
@ManishRashtraputMaths
@ManishRashtraputMaths 5 жыл бұрын
1$t from Manish Aryan
@sharyyyyy4
@sharyyyyy4 Жыл бұрын
#include int main() { int height; printf("enter your height: "); scanf("%d", &height); switch(height){ case 5: printf("your height is 5"); break; case 6: printf("your height is 6"); break; case 7: printf("your height is 7"); break; default: printf("error"); } return 0; }
@srij_12
@srij_12 3 жыл бұрын
# include // conversion of marks to grades . int main() { int marks; printf("enter your marks between 0 to 100 "); scanf("%d" , &marks); switch(marks/10) { case 10 : case 9 : printf("your grade is A "); break; case 8 : printf("your grade is B "); break; case 7 : printf("your grade is C "); break; case 6 : printf("your grade is D "); break; default : printf("your grade is F"); break; } return 0; }
@AdityaKate_
@AdityaKate_ 7 ай бұрын
Simple Calculator Code using Switch case: #include int main() { int Number; printf("Enter the mode you want to select "); printf(" 1.Addition 2.Subtraction 3.Multiplication 4.Division "); scanf("%d", &Number); switch(Number) { case 1: printf("we will be doing addition"); break; case 2: printf("we will be doing subtraction"); break; case 3: printf("we will be doing multiplication"); break; case 4: printf("we will be doing division"); break; default: printf("Error, re-enter the number"); } return 0; }
@food8814
@food8814 4 жыл бұрын
int main() { int class; printf("enter your class") scanf("%d",&class); switch(class) { class 5: printf("the class is 5th std"); break; class 6: printf("the class is 6th std"); break; default: printf("your class is not 3th std and 5th std"); } return 0; }
@mahmad48
@mahmad48 4 жыл бұрын
statement terminator after printf statement and in last not 3th it should be 6th
@rupeshvlogs2464
@rupeshvlogs2464 5 ай бұрын
#include int main() { int age; printf ("enter your age "); scanf("%d",&age); switch (age){ case 2: printf ("this is age 20 "); break ; case 3: printf ("this is age 45 "); break; default: printf ("age is not 20 and 45 "); } return 0; }
@sohamrajput783
@sohamrajput783 2 жыл бұрын
#include #include void main() { clrscr(); int choice; printf("fields available 1.BCCA 2.BCOM 3.BSC ------------------------------------------- "); printf("enter the field you want to get graduated with:"); scanf("%d", &choice); switch (choice) { case 1: printf("your choice is BCCA"); break; case 2: printf("your choice is BCOM"); break; case 3: printf("your choice is BSC"); break; default: printf("invalid field name, enter the number of field i.e. 1,2 or 3"); } getch(); }
@groww9276
@groww9276 5 жыл бұрын
Please promise that after C language you make videos on java or android.please.
@abhiswantchaudhary5548
@abhiswantchaudhary5548 Жыл бұрын
#include int main() { int a; printf("Enter the subject you like the most For mathematics press 1 For Science press 2 For English press 3 "); scanf("%d", &a); switch(a) { case 1 : printf("Your favourite subject is Mathematics"); break; case 2 : printf("Your favourite subject is Science"); break; case 3 : printf("Your favourite subject is English"); break; default: printf("Error!! You have entered wrong input"); } return 0; }
@AdityaPrakashVlogs_14
@AdityaPrakashVlogs_14 2 жыл бұрын
program to check the grade of students by taking input of their marks:= #include int main(){ int marks; printf("enter your marks= "); scanf("%d", &marks); switch (marks) { case 90: printf("the Grade is = A "); break; case 80: printf("the Grade is = B "); break; case 70: printf("the Grade is = C "); break; case 60: printf("the Grade is = D "); break; case 50: printf("the Grade is = E "); break; case 40: printf("FAIL "); break; default: printf("the grade Unknown"); break; } return 0; }
@kanavbatra443
@kanavbatra443 2 жыл бұрын
// a code for school purposes #include int main(int argc, char const *argv[]) { int a, b; printf("Enter your class[6,7,8] -->"); scanf("%d", &a); printf("Enter your marks [MM-80] -->"); scanf("%d", &b); switch (a) { case 6: printf("ok...... "); if (b > 32 && b < 80) { printf("Passed!! "); } else if (b < 32) { printf("Failed!! "); } else { printf("Wrong input!!! "); } break; case 7: printf("ok...... "); if (b > 40 && b < 80) { printf("Passed!! "); } else if (b < 40) { printf("Failed!! "); } else { printf("Wrong input!!! "); } break; case 8: printf("ok...... "); if (b > 42 && b < 80) { printf("Passed!! "); } else if (b < 42 && b < 80) { printf("Failed!! "); } else { printf("Wrong input!!! "); } break; default: printf("You have entered wrong class!! "); break; } return 0; } // i know its long enough but can be helpful
@Lafhdajhalare
@Lafhdajhalare 2 жыл бұрын
Bro I got error in my code can uh please help me😕
@kanavbatra443
@kanavbatra443 2 жыл бұрын
@@Lafhdajhalare bro what is the error?
@kanavbatra443
@kanavbatra443 2 жыл бұрын
have you tried my code?
@sounaksbioinform9504
@sounaksbioinform9504 2 жыл бұрын
#include int main() { int a; printf("Enter the number of months ",a); scanf("%d",&a); switch(a){ case 2: printf("the no. of days is 60 "); break; case 1: printf("the no. of days is 30"); break; } return 0; }
@vishalsharma3095
@vishalsharma3095 4 жыл бұрын
if,else and switch #include int main() { int age, le; printf("Enter your age to test drive "); scanf("%d",&age); if (age
@jyotiranjankunda2001
@jyotiranjankunda2001 4 жыл бұрын
Bhai ye escape sequence ok ka mtlb kya hai jo tumne printf statement ke andar likha h shuruvat me
@shreyashkakde9315
@shreyashkakde9315 4 жыл бұрын
@@jyotiranjankunda2001 bro vo ok nhi hai he hai bas inhone k bad whitespase nhi deye hai ko kam ka he kare ga
@idontknow8522
@idontknow8522 4 жыл бұрын
@@jyotiranjankunda2001 ke bad jobhi Likha hota Hain wo new line me Chala jata hain
@idontknow8522
@idontknow8522 4 жыл бұрын
@@_RajatDhullCSB 🤔
@vishalsharma3095
@vishalsharma3095 4 жыл бұрын
@@jyotiranjankunda2001/n ka mtlb new line hai ok
@mayankpanjwani6643
@mayankpanjwani6643 4 жыл бұрын
I NEED A CHEAT SHEET OF C PROGRAMMING LANGUAGES.
@UmeshBaba555
@UmeshBaba555 9 ай бұрын
#include Int main(){ Int day; Printf(" Enter your day"); Scanf("%d",day); Switch (day){ Case Monday: Printf("Today Monday"); Case : Printf("Today Monday"); Case Monday: Printf("Today Monday"); Case Monday: Printf("Today Monday"); Case Monday: Printf("Today Monday"); } }
@pankajhazarika1148
@pankajhazarika1148 3 жыл бұрын
void main() { int const X=0; switch(5/4/3){ case X: printf("Clinton"); break; case X+1:printf("Gandhi"); break; case X+2:printf("Gates"); break; default: printf("Brown"); } } Select one: a. Clinton b. Gandhi c. Gates d. compiler Error Answer do
@krishnakantrajput9349
@krishnakantrajput9349 Жыл бұрын
#include int main() { int day; printf("ENTER DAY::"); scanf("%d",&day); switch(day) { case 1: printf("Sunday 2023"); break; case 2: printf("Monday 2023"); break; case 3: printf("Tuesday 2023"); break; case 4: printf(" Wednesday 2023"); break; case 5: printf("Thursday 2023"); break; case 6: printf(" Friday 2023"); break; case 7: printf(" Saturday 2023"); break; default: printf("THIS IS NOT VALID DAY"); } return 0; } thank you harry bhai
@jayanspaliwal5907
@jayanspaliwal5907 3 жыл бұрын
I think it's better to use break if we don't want the code to behave erratic
@janhvinarayan1633
@janhvinarayan1633 Жыл бұрын
program to check whether entered no. is even or odd. #include int main(){ int a,b; printf("Enter value of a:"); scanf("%d",&a); if(a%2==0){ b=1; } else{ b=2; } switch(b){ case 1: printf("The value of a is even."); break; default: printf("The value of a is odd."); } }
@PR_Pavan
@PR_Pavan Жыл бұрын
#include Int main() { Int mark; Printf("enter your mark "); Scanf("%d",&mark); Switch(mark){ Case 10: Printf("you mark is 10 "); Breake; Case 40: Printf("your mark is 40"); Break; Case 90: Printf("your mark is 90"); Breake; Default: Printf(" your mark is not 10 40 or 90"); } Return 0; } Bro please understand the upper case Letters must be write in Lower case. ❤❤
@teertharajturkar
@teertharajturkar 2 жыл бұрын
#include Int main() { Int a; printf("enter 1 number "); scanf("%d",&a); switch(a) { case 1: printf("Teertharaj turkar "); break; default: printf("you have not enter 1 number"); } return 0; }
@hestroif
@hestroif 2 жыл бұрын
#include int main(int argc, char const *argv[]) { int subject; printf("type 1 for Math. 2 for Physics. 3 for Chemistry. 0 for all Math, Physics and Chemistry "); printf("Enter the subject name : "); scanf("%d", &subject); switch (subject) { case 0: printf("You've selected all subjects."); break; case 1: printf("You've selected Math."); break; case 2: printf("You've selected Physics."); break; case 3: printf("You've selected Chemistry."); break; default: printf("You didn't entered wrong number."); break; } return 0; }
@snehalshinde5907
@snehalshinde5907 Жыл бұрын
#include int main() { int month; printf("enter the month no. "); scanf("%d",&month); switch(month) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: printf("31 days are in this month"); break; case 4: case 6: case 9: case 11: printf("30 days are in this month"); break; case 2: printf("28 or 29 days in this month"); break; default: printf("ivalid input!"); } }
@SHREERAMKUMARPIET22CS194
@SHREERAMKUMARPIET22CS194 Жыл бұрын
#include int main() { int age; printf("ener your age"); scanf("%d",&age); switch (age) { case 19: printf("age is 19"); break; case 18: printf("age is 18"); break; case 17: printf("age is 17"); break; default: printf("bad choice better luck next time"); break; } return 0; }
@cadarkclown7690
@cadarkclown7690 Жыл бұрын
Using switch case for grades #include int main() { char grade; printf("Enter your grade: "); scanf("%c",&grade); switch(grade) { case 'A': printf("Perfect "); break; case 'B': printf("Excellent "); break; case 'C': printf("Good "); break; case 'D': printf("Your grade is not acceptable "); break; default: printf("Enter your Valid Grades"); } return 0; }
@alexabhishek7632
@alexabhishek7632 Жыл бұрын
#include int main() { int jersey_no; printf("enter any jersey no. "); scanf("%d",& jersey_no); switch(jersey_no) { case 7: printf("ms dhoni"); break; case 8: printf("r jadeja"); break; case 10: printf("god sachin"); break; case 17: printf("ab devliler"); break; case 18: printf("virat"); break; case 45: printf("rohit"); break; case 99: printf("ashwin anna"); break; default: printf("don't know him"); } return 0; }
@prathmeshs.burewar1444
@prathmeshs.burewar1444 Жыл бұрын
#include int main() { int subject; printf("enter your subject "); scanf("%d",& subject); switch(subject) { case 7: printf ("the subject is 7 "); break; case 16: printf ("the subject is 16 "); break; case 25: printf ("the subject is 25 "); break; default: printf("the subject is not 7, 16 and 25 "); break; } return 0; }
@rupamkarar85
@rupamkarar85 Жыл бұрын
#include int main() { int age; printf("entre your age "); scanf("%d", &age); switch (age) { case 3: printf("the age is 3"); break; case 13: printf("the age is 13"); break; case 15: printf("age is 15"); break; default: printf("age is not 3 or 13 nor 15"); break; } return 0; }
@kolengeee
@kolengeee 8 ай бұрын
#include Int main ( ) { Int marks ; Printf("enter your marks "); Scanf("%d",&marks); Switch(marks) { Case:20 Printf("marks is 20 "); Break; Case :30 Printf("marks are 30 "); Break; Default : Printf("your marks are not 20,30/n"); } Return 0; }
@Ahmed_king777
@Ahmed_king777 2 жыл бұрын
Thanks Sir, #include int main(int argc, char const *argv[]) { int age=12; printf("Enter your age "); scanf("%d", &age); printf("Your age is %d ", age); switch (age) { case 15: printf("The age is 15 is not allowed "); break; case 16: printf("The age is 16 is not allowed "); break; case 17: printf("The age is 17 is not allowed "); break; default: printf("You are eliigible "); break; } return 0; }
@pankajkumawat9778
@pankajkumawat9778 2 жыл бұрын
Thank you sir , you are great. include int main() { int choice, a,b,s; while(1) { printf(" 1. Addition"); printf(" 2. Odd-even"); printf(" 3. Printing n numbers"); printf(" 4. Multiplication"); printf(" 5. exit"); printf(" Enter your choice : "); scanf("%d", &choice); switch(choice) { case 1: printf(" Enter two numbers : "); scanf("%d%d",&a,&b); s=a+b; printf("Sum is %d", s); break; case 2: printf(" Enter a number : "); scanf("%d", &a); if(a%2==0) printf(" even number"); else printf(" odd number"); break; case 3: printf(" Enter a number : "); scanf("%d", &a); for(b=1;b
@KESHRIXD
@KESHRIXD 2 жыл бұрын
While(1) ku use kiya hai timne?
@parthborse8089
@parthborse8089 2 жыл бұрын
Copied comment
@kamranhussen5364
@kamranhussen5364 2 жыл бұрын
Mysirg se copy hey🙃
@ashutoshpradhan123
@ashutoshpradhan123 2 жыл бұрын
Can we create a normal calculator using switch......???????
@KESHRIXD
@KESHRIXD 2 жыл бұрын
@@ashutoshpradhan123 yes
@RanaharshSingh-tk7gd
@RanaharshSingh-tk7gd 3 ай бұрын
#include Int main ( ) { Int day; Scanf("%d", &day) ; Switch (day) { Case 1: Printf("monday ") ; Break; Case 2: Printf("tuesday ") ; Case 3: Printf("Wednesday ") ; Case 4: Printf("Thursday ") ; Default: Printf("default case "l) ; } Return 0; }
@rautsarthak8401
@rautsarthak8401 Жыл бұрын
#include int main() { int age; printf("what is your age "); scanf("%d",&age); switch(age){ case 18: printf("the ans is sarthak "); break; case 45: printf("Its your father age "); break; case 38: printf("Its your mothers age "); break; default: printf("its is not your describe data "); } return 0; }
@sumbhaniyamunaf6371
@sumbhaniyamunaf6371 11 ай бұрын
#include int main() { Int num; Printf("Enter your number to know which day it is"); Scanf("%d",&num); Switch (num) { Case 1: Printt("mon"); Break; Case 2: Printt("tuse"); Break; Case 3: Printt("wed"); Break; Case 4: Printt("thurs"); Break; Case 5: Printt("fri"); Break; Case 6: Printt("sat"); Break; Case 7: Printt("sun"); Break; Default Printf("invalid"); Break; } return 0; }
@deepakwatti458
@deepakwatti458 Жыл бұрын
#include int main() {char ch; printf("input any alphabet (a-z)"); scanf(ch) {case 'a' : case 'A' : printf(" Army"); break; case 'n' : case 'N' : printf(" Navy"); default : printf(" exit") } return 0; }
@prajwalsarnobat5789
@prajwalsarnobat5789 2 жыл бұрын
#include int main() { int age; printf("enter your age "); scanf("%d",&age); switch(age) { case 30: printf("the age is 30 "); break; case 40: printf("the age is 40 "); break; case 50: printf("the age is 50 "); break; default: printf("your age is not 30,40,50 "); } return 0; }
@sahilsingh1753
@sahilsingh1753 2 жыл бұрын
i did this #include int main(){ int days; printf("Enter the day of position in week:- "); scanf("%d", &days); switch (days) { case 1: printf("Monday "); break; case 2: printf("Tuesday "); break; case 3: printf("Wednesday"); break; case 4: printf("Thursday "); break; case 5: printf("Friday "); break; case 6: printf("Saturday "); break; case 7: printf("Sunday "); break; default: printf("Thier are 7 daya in week "); break; } return 0; }
@enter_tainment32.-
@enter_tainment32.- 9 ай бұрын
#include int main() { int class; printf(“Enter your class number"/n); scanf(“%d", &class); switch(class); { case 7; printf(“Your class number is 7"); break; default; printf(“Your class number is not 7") }
@xyz-gm4ee
@xyz-gm4ee 2 жыл бұрын
#include int main() { int age; printf("Enter your age"); scanf("%d",&age); switch(age) { case 18: printf(" You are eligible for voting"); break; case 8: printf("You are not eligible for voting"); default: printf(" Only eligible if you are 18 above"); } return 0; }
@MuhammadHaris-xp1yd
@MuhammadHaris-xp1yd 3 жыл бұрын
Great explanation of switch statement❣️ BHT he easy way ma smjhaya blkol jesa ka vedio ma one way type amjhaata ha ta ka koi doubt na Raha we'll done ar thanks allot 🌸
@Smartminds_army
@Smartminds_army Жыл бұрын
int main() int marks printf("enter your marks"); scanf(%d ,&marks); switch(marks) { case 13: printf("you are passed"); break; case20: printf("you are topper") break; default: printf("your marks are under 0 to 20"); } return 0 }
@kundansthink1897
@kundansthink1897 7 ай бұрын
#include int main(){ int age; printf("enter the age: "); scanf("%d",&age); switch (age) { case 2: printf("your age is 2. "); break; case 20: printf("your age is 20. "); break; case 22: printf("your age is 22. "); break; case 25: printf("your age is 25. "); break; default: printf("AGE is not matched."); break; } return 0; }
@jhavikash213
@jhavikash213 Жыл бұрын
#include int main() { int choice; printf("Enter a number (1-3): "); scanf("%d", &choice); switch (choice) { case 1: printf("You chose option 1. "); break; case 2: printf("You chose option 2. "); break; case 3: printf("You chose option 3. "); break; default: printf("Invalid choice. "); } return 0; } thank you sir...
Loops In C: C Tutorial In Hindi #12
10:19
CodeWithHarry
Рет қаралды 785 М.
If Else Control Statements In C: C Tutorial In Hindi #10
25:11
CodeWithHarry
Рет қаралды 1,1 МЛН
Can You Find Hulk's True Love? Real vs Fake Girlfriend Challenge | Roblox 3D
00:24
كم بصير عمركم عام ٢٠٢٥😍 #shorts #hasanandnour
00:27
hasan and nour shorts
Рет қаралды 10 МЛН
C_31 Switch Statement In C | C Programming Tutorials
22:48
Jenny's Lectures CS IT
Рет қаралды 301 М.
#11: Switch Statement in C | C Programming for Beginners
11:10
Programiz
Рет қаралды 166 М.
Find The Fake Salman Khan | Sach ya Scam | SlayyPop
21:09
SlayyPop
Рет қаралды 1,2 МЛН
What Do Software Engineers Actually Do? (It’s Not What You Think)
13:07
Functions In C: C Tutorial In Hindi #19
25:54
CodeWithHarry
Рет қаралды 1 МЛН
Learn JSON in 10 Minutes
12:00
Web Dev Simplified
Рет қаралды 3,2 МЛН