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-lf1kf5 жыл бұрын
Perfect ..
@AdarshKumar-lf1kf5 жыл бұрын
Notes kb se aayegi
@RiyaSingh-eg9qr5 жыл бұрын
its going normal
@jyotitiwari31345 жыл бұрын
Sir array aur pointer thoda aur brief description De dijiye Jisey bade program bhi try kr sake
@_inspireverse___5 жыл бұрын
Very nice explanation sir? Mere saare doubts clear ho gaye. Thank you sir!
@dnyaneshwargaikwad67883 жыл бұрын
{ 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-gq7yr2 жыл бұрын
#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 Жыл бұрын
Bro give me your number please
@s_caat_c1702 Жыл бұрын
Great
@rohanSubTopic Жыл бұрын
bahut cute hey
@abentertainment7475 Жыл бұрын
😊
@NupurVyas-yr5fk Жыл бұрын
Mujhe toh kuch samjh nhi aara😢😢😢😢
@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_Yash1011 ай бұрын
❤
@roshangaming27725 ай бұрын
Galat h bhai
@factsandknowledge89543 ай бұрын
@@roshangaming2772 KYA
@KrishnaGoswami-r6k3 ай бұрын
@@roshangaming2772 kese ?
@KARTIKOGYT11 күн бұрын
@@roshangaming2772hmm isme case 1,2,3 ana chaiyeh instead of 40,50or60.
@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; }
@shubhamjaiswal23225 жыл бұрын
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.
@CodeWithHarry5 жыл бұрын
Welcome bro!
@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") } }
@chaudharyshoeb84595 жыл бұрын
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; }
@sineparadox983 жыл бұрын
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.
@uditnathprasad56127 ай бұрын
#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-j4v2 ай бұрын
you forgot to include break
@apt76609 күн бұрын
Yeah he forgot to put break after case 10
@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; }
@nikhilraj18425 жыл бұрын
// 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; }
#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; }
@abdularhamjamal89573 жыл бұрын
percent variable is useless....you didn't use it ..in 4th line (int age,percent;) should be (int age;)😄
@1plusspace5683 жыл бұрын
should be in 4th line Scanf("%d", &age,& percent);
@CEB-AMITKUMAR2 жыл бұрын
Bro If by default has executed then break no needed I think 🤔
@NaveenSharmaJii2 жыл бұрын
This program is not executed
@Sunny-qy1fj2 жыл бұрын
you need to take another switch in every case and put percent according too your mind
@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 Жыл бұрын
#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-g3e2 жыл бұрын
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
@nikhilanand34472 жыл бұрын
Bro your English tells us that you are Pakistani
@professor22502 жыл бұрын
@@nikhilanand3447 bro your face tells us you are Indian
@anshumanraturi2 жыл бұрын
@@nikhilanand3447 not ethical for anybody to troll anyone for his/her second language. English doesnot bring wisdom u proved it. May u get wisdom.
@parmardharmik47312 жыл бұрын
@@nikhilanand3447 bro tuje itani hi ENGLISH aati hai to tu jake usse sikha Tere ma -baap ko teri jitani English aati hai kya??????????
@memematerial42052 жыл бұрын
Welcome bro
@virajdhakane4402 жыл бұрын
#include int main() Char ch; frintf("enter charactor); Scanf("%c",&ch); Switch(ch) { case 'a' : printf("vowel"); break; default:printf("uconsoment"); } return 0; }
@arjunkendre46565 жыл бұрын
#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
@akashagrawal26453 жыл бұрын
🙄 if person input 2 then it will show your age is 45 I think so you should improve this one 🙏
@nileshrajbhar92633 жыл бұрын
Printf will come before scanf u should improve this thing also 🙏🙏😊😊
@nileshrajbhar92633 жыл бұрын
I am also a beginner 👍👍🤘🤞
@SUNNYVLOGS8123 жыл бұрын
Bro if a person input his /her age 2 then account to your program he's 45 year old :(
@24_cst3_eshagunjekar73 жыл бұрын
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 Жыл бұрын
/* 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 Жыл бұрын
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 Жыл бұрын
#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-27utkarshawarbhe282 жыл бұрын
#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; }
@nihaltabbalaji53402 жыл бұрын
#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"); }
@preetmonga4362 жыл бұрын
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 Жыл бұрын
what if i entered base insted of hypotenuse in the first place
@preetmonga436 Жыл бұрын
@@yashshukla9590 that's why i wrote their to enter larger side first i.e. hypotenuse
@dorothy4407 Жыл бұрын
Ur code means if area is 0 it's a right angled?? That doesn't make sense, explain pls
@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 Жыл бұрын
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 Жыл бұрын
{ 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; } }
@tuneflix72522 жыл бұрын
#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_space3992 жыл бұрын
Bhai app kon se code editor ka use krte h
@tuneflix72522 жыл бұрын
@@virtual_space399 Visual Studio
@sine-sine45302 жыл бұрын
Pura course kar diya apne?
@sjgaming291111 ай бұрын
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-o8i3 ай бұрын
#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; }
@imamuddinansari29175 жыл бұрын
aap itna achhe se smjhate h fir bhi aap ke video pr likes kam q aate h ? aapke sabhi videos superb h 👌👌👌👌👍👍👍👍
@mohitgupta-ks4em3 жыл бұрын
kyo ki sir hindi main padate hi
@arjitdubey-r2f11 ай бұрын
#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; }
@iitduniya10 ай бұрын
Kon kon 2024 me dekh raha hai❤❤
@Xianshome15057 ай бұрын
Me also!
@YugankUpadhyaya-pp4lu7 ай бұрын
Maaah
@SulekhaNandan-iz9yf6 ай бұрын
Me
@ayeshafaisal10586 ай бұрын
Mee
@DCP886 ай бұрын
me
@c_56_rushikeshsunilpingale652 жыл бұрын
#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 Жыл бұрын
Bro muze activation extension nahi dikha raha hai kya karu
@PriyaGupta-sg4sm2 жыл бұрын
/*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 Жыл бұрын
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 Жыл бұрын
#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 Жыл бұрын
#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; }
@divyashreechandrana95602 жыл бұрын
// 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
@utkarshpankaj52 жыл бұрын
Bhaiya/didi aapne pehle lagaya hai vo last me hota hai
@ashish4k072 жыл бұрын
@@utkarshpankaj5 its not needed actually instead it could be like this printf("Enter a number:"); scanf("%d",&a); this will look good.
@deepsahil__2 жыл бұрын
@@utkarshpankaj5 that's upto you, you can use it either in the start or middle or last 🙋♂️
@Anasboss7442 жыл бұрын
Cas
@pranitdaphale64092 жыл бұрын
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; }
@Hatimtai0072 жыл бұрын
%c
@adityatripathi21783 жыл бұрын
// 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; }
@BeingAllinOneLive3 жыл бұрын
meme material type code
@BeingAllinOneLive3 жыл бұрын
my parents use this code in my real life
@kon_humein2 жыл бұрын
Waah kya code hai🤣🤣
@Da_bing77-d778 ай бұрын
#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");
@achyutagrahari20082 жыл бұрын
/* 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 "); } }
@clashchamp4102 жыл бұрын
Scan f kaha he
@OmjiDwivedi-ft6qe10 ай бұрын
Mja aaa gya 💥💥
@Tech-learner-455 ай бұрын
❤
@MdShahid-rb8nc2 жыл бұрын
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; }
@GameGuftuGu2 жыл бұрын
Good bro.and very funny code 👏🤣
@ananyashrivastav82982 жыл бұрын
hahahhahahahaahhhahhahhahahaha
@shubhamjaiswar75422 жыл бұрын
Hahahaha 😂 Nice code ..
@jaykoranga48592 жыл бұрын
Funny bro
@SadamHussain-zj9ei5 жыл бұрын
Hi Sir, Great Explanation of switch statement. Thank you so much.
@CodeWithHarry5 жыл бұрын
Thanks Sadam!
@SadamHussain-zj9ei5 жыл бұрын
Sir, aap awar exercise banaye ge. Bahut maza hai ex main.
@hindishorts5934 жыл бұрын
@@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
@karateandextratips44874 жыл бұрын
@@hindishorts593 same here bro
@karateandextratips44874 жыл бұрын
@@hindishorts593 pls solve this problem bhai
@rohanmasne12093 жыл бұрын
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; }
@prathamkhatri39692 жыл бұрын
#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; }
@rishabsharma55213 жыл бұрын
Hey Harry I'm literally watching your videos and actually it's easy to learn and I can easily implement in programs.
@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🥰🥰😍
@ashishbalyan8353 жыл бұрын
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_3 жыл бұрын
Beta aap galat platform par aa gaye ho. Aap whitehat junior par hi seemit rahe... Aur itna na hi hase toh behtar..
@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; }
@swagatamhazra19103 жыл бұрын
Harry sir You teach better than my college college professor ♥️😀
@bharatsinghpatel50863 жыл бұрын
Abhi rukho iska screenshote aapke sir ko deta hu.. 😂
@uvutkarshverma3 жыл бұрын
@@bharatsinghpatel5086 ha bhai de de sir ki burayi but harry rocks
@akib_zaved71693 жыл бұрын
@@uvutkarshverma 😂😂😂
@mkstates62464 жыл бұрын
Sir aap bahut clearly samjhate jo thank you sir 🙏🏻
@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; }
@iamstudying38911 ай бұрын
pov: you are learning your first language in your semester break
@Taruunn253 ай бұрын
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 (
@mrnavdip95603 жыл бұрын
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.
@geteverything82522 жыл бұрын
Mere liye bhi yaar harry bhai kya padate hai yaar vo mere liye bhagwan hai jindagi mai ek bar jarur milunga 🙏
@Hyd352 жыл бұрын
Bro to get into cyber security what else i have to know i mean which language i has to study. And what else?
@mrnavdip95602 жыл бұрын
@@Hyd35 c++ , py. ect..
@Hyd352 жыл бұрын
@@mrnavdip9560 thankyou😇
@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-tl2ee4 жыл бұрын
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.??????
@abdussamipatel79014 жыл бұрын
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
@ManishRashtraputMaths5 жыл бұрын
1$t from Manish Aryan
@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_123 жыл бұрын
# 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_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; }
@food88144 жыл бұрын
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; }
@mahmad484 жыл бұрын
statement terminator after printf statement and in last not 3th it should be 6th
@rupeshvlogs24645 ай бұрын
#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; }
@sohamrajput7832 жыл бұрын
#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(); }
@groww92765 жыл бұрын
Please promise that after C language you make videos on java or android.please.
@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_142 жыл бұрын
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; }
@kanavbatra4432 жыл бұрын
// 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
@Lafhdajhalare2 жыл бұрын
Bro I got error in my code can uh please help me😕
@kanavbatra4432 жыл бұрын
@@Lafhdajhalare bro what is the error?
@kanavbatra4432 жыл бұрын
have you tried my code?
@sounaksbioinform95042 жыл бұрын
#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; }
@vishalsharma30954 жыл бұрын
if,else and switch #include int main() { int age, le; printf("Enter your age to test drive "); scanf("%d",&age); if (age
@jyotiranjankunda20014 жыл бұрын
Bhai ye escape sequence ok ka mtlb kya hai jo tumne printf statement ke andar likha h shuruvat me
@shreyashkakde93154 жыл бұрын
@@jyotiranjankunda2001 bro vo ok nhi hai he hai bas inhone k bad whitespase nhi deye hai ko kam ka he kare ga
@idontknow85224 жыл бұрын
@@jyotiranjankunda2001 ke bad jobhi Likha hota Hain wo new line me Chala jata hain
@idontknow85224 жыл бұрын
@@_RajatDhullCSB 🤔
@vishalsharma30954 жыл бұрын
@@jyotiranjankunda2001/n ka mtlb new line hai ok
@mayankpanjwani66434 жыл бұрын
I NEED A CHEAT SHEET OF C PROGRAMMING LANGUAGES.
@UmeshBaba5559 ай бұрын
#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"); } }
@pankajhazarika11483 жыл бұрын
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 Жыл бұрын
#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
@jayanspaliwal59073 жыл бұрын
I think it's better to use break if we don't want the code to behave erratic
@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 Жыл бұрын
#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. ❤❤
@teertharajturkar2 жыл бұрын
#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; }
@hestroif2 жыл бұрын
#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 Жыл бұрын
#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 Жыл бұрын
#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 Жыл бұрын
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 Жыл бұрын
#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 Жыл бұрын
#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 Жыл бұрын
#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; }
@kolengeee8 ай бұрын
#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_king7772 жыл бұрын
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; }
@pankajkumawat97782 жыл бұрын
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
@KESHRIXD2 жыл бұрын
While(1) ku use kiya hai timne?
@parthborse80892 жыл бұрын
Copied comment
@kamranhussen53642 жыл бұрын
Mysirg se copy hey🙃
@ashutoshpradhan1232 жыл бұрын
Can we create a normal calculator using switch......???????
@KESHRIXD2 жыл бұрын
@@ashutoshpradhan123 yes
@RanaharshSingh-tk7gd3 ай бұрын
#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 Жыл бұрын
#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; }
@sumbhaniyamunaf637111 ай бұрын
#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 Жыл бұрын
#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; }
@prajwalsarnobat57892 жыл бұрын
#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; }
@sahilsingh17532 жыл бұрын
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.-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-gm4ee2 жыл бұрын
#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-xp1yd3 жыл бұрын
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 Жыл бұрын
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 }
@kundansthink18977 ай бұрын
#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 Жыл бұрын
#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...