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😢😢😢😢
@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!
@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 Жыл бұрын
❤
@roshangaming27727 ай бұрын
Galat h bhai
@factsandknowledge89545 ай бұрын
@@roshangaming2772 KYA
@LRD_KRXZNA5 ай бұрын
@@roshangaming2772 kese ?
@KARTIKOGYT2 ай бұрын
@@roshangaming2772hmm isme case 1,2,3 ana chaiyeh instead of 40,50or60.
@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.
@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; }
@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; }
@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.
@Basigma-g3e3 жыл бұрын
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
@nikhilanand34473 жыл бұрын
Bro your English tells us that you are Pakistani
@professor22503 жыл бұрын
@@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
@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") } }
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
@zubiaaisha411219 күн бұрын
include int main() { int color; printf("Enter a color "); scanf("%d", & color); switch(color) { case 1: printf("the color is purple "); break; case 2: printf("the color is white "); break; case 3: printf("the color is red "); break; default: printf("the color is not purple, white or red"); } return 0; }
@uditnathprasad56129 ай бұрын
#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-j4v4 ай бұрын
you forgot to include break
@apt76602 ай бұрын
Yeah he forgot to put break after case 10
@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
@iitduniya Жыл бұрын
Kon kon 2024 me dekh raha hai❤❤
@Xianshome15059 ай бұрын
Me also!
@YugankUpadhyaya-pp4lu9 ай бұрын
Maaah
@SulekhaNandan-iz9yf8 ай бұрын
Me
@ayeshafaisal10588 ай бұрын
Mee
@DCP888 ай бұрын
me
@Cricket110z2 күн бұрын
maina ap ka 10 video dekha aik din main mujha itna topic clear hogyaa ka main kiya bataon bhaie thank u so much for this course And love for u from pakistan
@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; }
@ankitsatyal85125 жыл бұрын
😂😂🙏🏻🙏🏻🙏🏻
@harshittripathi55575 жыл бұрын
osm bruh🤣🤣🤣🤣
@nikhilflautist5 жыл бұрын
wonderful bro
@AkashGupta-uk2ld5 жыл бұрын
lmao it's not valid......
@techymind13785 жыл бұрын
bhai tune starting me printf me kuch likha hi nhi
@pritanbiswas587 Жыл бұрын
#include int main() { int day; printf("Enter your number:"); scanf("%d",&day); switch(day) { case 1: printf("Saturday"); break; case 2: printf("Sunday"); break; case 3: printf("Monday"); break; case 4: printf("Tuesday"); break; case 5: printf("Wednesday"); break; case 6: printf("Thursday"); break; case 7: printf("Friday"); break; default: printf("invalid"); } return 0; } thank you
@virajdhakane4402 жыл бұрын
#include int main() Char ch; frintf("enter charactor); Scanf("%c",&ch); Switch(ch) { case 'a' : printf("vowel"); break; default:printf("uconsoment"); } return 0; }
@ajaymohankar59125 жыл бұрын
#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;)😄
@FSayyedOfficial3 жыл бұрын
should be in 4th line Scanf("%d", &age,& percent);
@CEB-AMITKUMAR3 жыл бұрын
Bro If by default has executed then break no needed I think 🤔
@NaveenSharmaJii3 жыл бұрын
This program is not executed
@Sunny-qy1fj2 жыл бұрын
you need to take another switch in every case and put percent according too your mind
@MuhammadHaris-xp1yd4 жыл бұрын
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 🌸
@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..
@anuragsingh-mm7kwАй бұрын
एक ही तो दिल है कितने बार जीतोगे हरि भाई
@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
@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; }
@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; }
@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🥰🥰😍
@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; }
@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
@akashagrawal26454 жыл бұрын
🙄 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 :(
@Mr_kumar334 жыл бұрын
Sir aap bahut clearly samjhate jo thank you sir 🙏🏻
@HunterPlaysOP8 ай бұрын
love you sir sab smjh agya 😚😚😍😇😇🥰🥰🥰🥰🥰
@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; }
@stunningdance-qo3ce5 ай бұрын
Sir you are amazing ❤❤❤ teaching style is incredible
@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?
@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; }
@iamstudying389 Жыл бұрын
pov: you are learning your first language in your semester break
@vineetidesire3 жыл бұрын
आप पढ़ाते है न भईया - तो गर्दा उड़ा देते है आप। गजब 🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻💖💖💖💖
@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; } }
@Jack_07123Ай бұрын
tumhe weight he mila code bnane ka liye😂😂
@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 😂😂😂
@janhvinarayan1633 Жыл бұрын
love your way of explaining, i wish all my college teachers were like u but never mind.
@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; }
@VishwanathRathod-bh6te9 ай бұрын
thank you sir aapne acha Samjaya ek ek karke sub samj raha hai if else toh samj aagya abhi switch bhi samj gya.❤❤❤❤💯💯💯
@rasikashahapure677711 ай бұрын
#include int main() { int day; printf("Enter your day "); scanf("%d", &day); switch (day) { case 1: printf("The day is Monday"); break; case 2: printf("The day is Tuesday"); break; case 3: printf("The day is Wednesday"); break; case 4: printf("The day is Thursday"); break; case 5: printf("The day is Friday"); break; case 6: printf("The day is Saturday"); break; case 7: printf("The day is Sunday"); break; default: printf("Not a day"); break; } return 0; }
@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.
@geteverything82523 жыл бұрын
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😇
@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
@usjvlogs9155 Жыл бұрын
Switch ke andhar switch, learnt new thing today, thanks Harry bhaii❤😊
@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
@theprogramedworld11683 жыл бұрын
hi bro i am lucky my age is 12 year i am big fan of you and i have watch your every video now i am learning C i have learned it 50% from your videos and i am taking out notes thanks bro
@Taruunn255 ай бұрын
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 (
@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 🙂
@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; }
@healthwealth1125 ай бұрын
harry bhai main aj apki yeh video dakhi saray doubt clear ho gya allah apko lambi zindage da imran love from karachi pakistan
@achyutagrahari20083 жыл бұрын
/* 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-ft6qe Жыл бұрын
Mja aaa gya 💥💥
@Tech-learner-457 ай бұрын
❤
@groww92765 жыл бұрын
Please promise that after C language you make videos on java or android.please.
@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; }
@biswajitsamant65883 жыл бұрын
@CodeWithHarry bhai aapp ne to mera doubt hi pura clear kardiaa BHAI
@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
@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
@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
@mayankpanjwani66435 жыл бұрын
I NEED A CHEAT SHEET OF C PROGRAMMING LANGUAGES.
@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🤣🤣
@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; }
@jayanspaliwal59073 жыл бұрын
I think it's better to use break if we don't want the code to behave erratic
@OG_Yash10 Жыл бұрын
#include int main() { int age, marks; printf("Enter your age "); scanf("%d",&age); printf("Enter your marks "); scanf("%d",&marks); switch(age) { case 3 : printf("your age is 3 "); break; case 20: printf("your age is 20 "); switch(marks) { case 30: printf("your marks is 30 "); break; default: printf("your marks is not 30 "); } break; case 50: printf("your age is 50 "); break; default: printf("your age is not 3,20 or 50"); } 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?
@arjitdubey-r2f Жыл бұрын
#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; }
@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
@htkgaming97393 жыл бұрын
Yrr nested if skip ho gya?
@SoniyaSagar-uc8wiАй бұрын
Hm ji
@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; }
@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. ❤❤
@HafeezAfridi-e2i22 күн бұрын
Kon kon 2025 me dek raha hain
@gavkari_4 күн бұрын
Me
@haseebwaris57814 жыл бұрын
ZAbabardast Bhttt acha sa smjhaya apna ❤ Beginners ka lia asaan ar b ha ar easily smjh b sakt ha zeda complicated way ma nai smjhaya just like other KZbinrs
@pankajhazarika11484 жыл бұрын
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
@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(); }
@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; }
@rautsarthak84012 жыл бұрын
#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; }
@saketdhaka68033 жыл бұрын
Bhai app bhot aache teacher ho best of luck for your future ❤️
@simpiyashasvi51083 жыл бұрын
harry bro keep in mind u r writing a program of a case sensitive language so while u were teaching u wrote Switch(a)...Sorry to say ...You are a god to me and ofc the best fking teacher in this world
@Sarvesh-he7zx6 ай бұрын
#include int main() { int value; printf("Enter the results of your medical tests "); scanf("%d", &value); switch(value) { case 80: printf("your health is good "); break; case 85: printf("your health is more better "); break; case 90: printf("your health is excellent "); break; default : printf("you have very high chances of sugar"); } return 0; }
@NZM-o8i5 ай бұрын
#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; }
@Da_bing77-d7710 ай бұрын
#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");
@pankajkumawat97783 жыл бұрын
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
@KESHRIXD3 жыл бұрын
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
@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; }
@dharmgohel59052 ай бұрын
Sir aap bahut acha sikha rahe hai thank you so much sir
@215avinashjhaevening23 жыл бұрын
This video is helping me in 2022
@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; }
@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
@UECAshutoshKumar2 жыл бұрын
Thank you bhaiya ❤️
@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; }
@officialamansaini4818 Жыл бұрын
#include int main () { int time; printf("Enter the time "); scanf("%d", &time); switch (time) { case 2: printf("School ki chutti hogi "); break; case 4: printf("Tution jana hai "); break ; case 7: printf("Khana khaunga "); break ; default: printf("kuch nhi krunga "); } return 0; }
@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.
@MonyaChopadeАй бұрын
# include int main (){ char sub; int marks; printf("enter the name of subject: "); scanf("%c",&sub); printf("enter the marks: "); scanf("%d",&marks); switch (sub){ case 's': printf("enter the subject is right "); break; case 'm': printf("enter the subject is right "); break; default : printf("enter the subject is wrong "); } switch (marks){ case 45: printf("science subject marks is 45"); break; case 30: printf("math subject marks is 30"); break; default: printf("marks is wrong"); break; } return 0; }
@sjgaming2911 Жыл бұрын
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; }
@AdityaKate_9 ай бұрын
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; }
@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