C programming ke is course mei project banaye kya end mei? Konsa project banau suggest karo please?
@gamingwithshan47885 жыл бұрын
Make a software please
@aakash90255 жыл бұрын
Bro make any graphical game or graphical calculator
@ramashankarmaurya88085 жыл бұрын
Bhai End mein pehle acche se basics smj lete hai phir project banne mein diqquat nhi aayegi
@ittechsolution73565 жыл бұрын
Make a hotel management project
@gamingwithshan47885 жыл бұрын
@@ramashankarmaurya8808 this is also good
@shaurya25993 жыл бұрын
Hardest part of this series is installation of visual Studio code
@culturalvibes81083 жыл бұрын
so true
@magnaton8833 жыл бұрын
No downloading of compiler was most complicated part so far 😂
@EngineeringBoiz82752 жыл бұрын
I think Removing Of GCC error Was Difficult🙂
@shauryaraghuvanshi45932 жыл бұрын
Very true 😂😂
@lifeisstrangevideos39242 жыл бұрын
Compiler part is most difficult
@anaswahid85205 жыл бұрын
Sir u r doing well U explain easily Professors in my college try to make things as complicate as possible But u explain in friendly way Sir I suggest u to make videos on mathematical C programming. Means numerical method C programming Bkoz it is difficult to understand by books
@Ashishkumar-ei5yi4 жыл бұрын
Which college?
@AkbarKhan-gv4ey11 ай бұрын
@@Ashishkumar-ei5yijan k kya karega😅
@mujtabarizvi3992 жыл бұрын
my practice: source code: #include int main() { int i = 0; label: printf("Wirte 4 to get out from this "); scanf("%d", &i); if (i == 4) { goto end; } else { goto label; } end: printf("done!!"); return 0; }
@yashkaswala29217 ай бұрын
printf mai write ka spellin wron e
@priyatayade40155 жыл бұрын
definitely we would like to do project
@sns_coolboy4 жыл бұрын
Yes
@utkarshteotia43253 жыл бұрын
Really?
@akas023 жыл бұрын
Now she is a perfect coder guys😂
@yuvrajyadav98832 жыл бұрын
Befor learn basic
@kishorsahoo54463 жыл бұрын
I respect all teacher but u are special for me ....Harry bro .I can't give you anything but I can give ♥️😊.....carry on bro 🔥🔥🔥🔥🔥🔥🔥
@bhupendrasingharora61833 жыл бұрын
Harry bhai is just amazing thank you harry brother.
@user-ch6hi1wy3b Жыл бұрын
Solution for multiplication table😊😊❤ int num,i,mul,range; Printf("Enter the value of n",num); Scanf("%d",&num); printf("Enter the value of range",range); scanf("%d",&range); for(i=1,i
@Mayank-dd3vw4 жыл бұрын
goto is what I missed in Python. I always wanted a statement in Python, which can do the same work.
@truefalse70593 жыл бұрын
one solution to this problem : i write code inside a function and when you want to use goto function you can simply use return statement which let you to go out from every loop
@ayushmukati89342 жыл бұрын
Bhai is program ne 8 baar number kyu liya please bta skte ho kya 8 baar dalne ke baad output 1 diya esa kyu
@spizer_dz132 Жыл бұрын
@@ayushmukati8934 because second loop 8 baar chala tha n 1 tb print hua jb second loop pura ek baar chal gya to i ki value print Hui thi
@Pawansaini-wf5rw4 жыл бұрын
bhai ye c programming ki playlist meri bhot help kar rhi hai...... thanku harry bhai
@Vinaykumar.07 Жыл бұрын
Most inspiring part Abhi meri ye jimmedari bnti hai ki mai apko batao Mast bhai
@BalochHumeen6 ай бұрын
thank you so mush code with herry for clearing our doubt this video help a lot
@kumarrahul44074 жыл бұрын
thx for ur these nice tutorials . I like ur all tutorials too much , I m accessing ur playlist regularly from past 1 months. I m a student of CSE 3rd from Dhanbad Jharkhand. Your KZbin channel and ur seperate and classified playlists are very helpful for me and my collague. You hv explaind every aspect of different programming languages in very easiest and simplest words.
@Vishwajit.Developer5 ай бұрын
hello sir what are you doing now? means Job or Education
@mr_affan152 жыл бұрын
Bhai I am atleast 4 time code after watching your video thanks for teaching us
@shivamchamp32632 жыл бұрын
Thank you Harry bhai ..😊😊😊😊
@mohammedreehannawaz9597 Жыл бұрын
Thank u Harry bhaiya❤️😍
@prathameshmodhale46302 жыл бұрын
Guys you can write first program as , #include int main() { printf("we are inside lebel "); goto end; printf("Hello World "); end: printf("we are at end "); return 0; }
@shreshtharawat1844Ай бұрын
thanks bro! cool tutorial.. worked like a charm
@UECAshutoshKumar2 жыл бұрын
Thank you sir ❤️
@pradeeppradeepkanaujiya89902 жыл бұрын
Harry bhai is great 👍👍👍👍
@rohinisingh69162 жыл бұрын
Thank you so much sir 😊.
@abhisheksurela28812 жыл бұрын
tbh i like the 𝚐𝚘𝚝𝚘 statement, I've done GUI development in python (with QT5 and Tkinter) and there was a case, where I was using nested loops and wanted to break them when the user clicked a button (I mean, I tried to stop that nested iteration ''instantly'') and for that, I was using boolean value with multiple if-else (tbh it wasn't instant but did work, and in result, there was a slight lag in the program.. which isn't user friendly) but If I were coding in 𝐂 I can definitely use 𝚐𝚘𝚝𝚘 statement. Anyways, Thank-You Harry bhai.. I can't do anything without you in this life.. you are the ONLY BEST teacher I ever got...
@imsagar35414 жыл бұрын
Thanks Harry Bhai for best programming videos.
@takshbhatt147 Жыл бұрын
//This is perfect example of if and else statement. #include int main() { int num; printf("Enter 0 to exit the code. "); scanf("%d", &num); if (num != 0) { printf("Invalid number to exit the code."); } else { printf("You successfully exited the code."); } return 0; }
@rishabharya3329 Жыл бұрын
Vro you wrote ENTER 0 TO EXIT and then in if(condition) {Here you wrote 0 is invalid no. To exit the code } Wtf
@rishabharya3329 Жыл бұрын
Btw do you know how to use a character instead of integer in Condition bracket? If(condition) {Code}
@thecinemasessions23 күн бұрын
bhai jan tusssi great ho ...❤❤❤❤
@Nezukotanziro Жыл бұрын
Bhai jiska goto loop stop nhi ho raha vo ctrl+c tap kar dena ho jayega brooo 🤗
@_renzy_4 жыл бұрын
I started infinite loop with goto statement... But i dont know how to stop it.... And my vscode stopped responding... Is anyone here like me 😂
@ankursapariya17384 жыл бұрын
Well... I have started infinite loop without goto loop and was confused as hell on how to stop it....
@Lovepreetsingh-hl3we4 жыл бұрын
😂😂😂
@vibhusati76733 жыл бұрын
so do you know now how to stop it?
@_renzy_3 жыл бұрын
@@vibhusati7673 my vs code crashed.... Then i used google and got to know Ctrl+C and Ctrl+Alt+M
@SanjeevBytes3 жыл бұрын
It happens with me also
@dkboss76782 жыл бұрын
I like your all c programming video sir
@charusharma44053 жыл бұрын
It's amazing today i understand that wht is use of the go to statement 😊😅😣
@ankitmahajan40503 жыл бұрын
Nice explanation of goto statement bhaiya love u ❤❤❤
@chiteez_____1562 Жыл бұрын
You teach very well. Thanks a lot ❤👍
@hirdeshrajputt2 жыл бұрын
*******Attendance************** Name - Hirdesh Mewada Age - 19 Date - 10/04/2022 *****Thank you Harry bhai*****
@pubgsquad30693 жыл бұрын
Amazing I lot of learn in this channel
@tanvirkhan67075 жыл бұрын
#include int main() { int age; printf("Access for group 10 people "); for (unsigned long int i = 0; i
@Deep_Logic_Labs Жыл бұрын
#include int main() { int marks; int num; label: printf("Enter your marks(0-100) "); scanf("%d", &marks); if (marks >= 40 && marks
@Sofishorts12311 ай бұрын
But Jo num wala else h usme muje enter the valid command show ho rha h last m but m usko wapes krna chahta hu ke valid command btaye galat number dalne PR or fir wapes she number namge???
@rohithkumar78943 жыл бұрын
loved this course sir
@asimitroy15924 жыл бұрын
Great Harry vaiya.. ❤️❤️goto ka pura confusion dur ho giya
@gautammurmu53783 жыл бұрын
Thanks bhaiya for helping.... It's helping me so much in my studies
@aaryanapte3 жыл бұрын
Thanks Harry BHaai!!!
@IT__SAMIKSHAGUPTA3 жыл бұрын
really your videos and notes both are very amazing and very help , and your teaching style superbbb
@janhvik Жыл бұрын
thanks harry bhaiya for this amazing lecture. good work keep it up.
@priteshkchoughule5748 Жыл бұрын
Thank you so much for such amazing lecture
@Lv_La_LrАй бұрын
Harry Sensei OP ❤❤
@mansimishra6342 жыл бұрын
Very nice video useful and doubts clearing 🙂
@dkboss76782 жыл бұрын
I am your students and I am your big fan
@swarooproy97753 жыл бұрын
Thanks Harry Bhaiya
@sauravgaur87564 жыл бұрын
Goto statement create confusion but if we write it inside a condition then it will help us a lot may be for start the project from desired location or restart it form start after the end
@ishikasirohi22783 жыл бұрын
Thnkuuu soo mch uh r awsm sir
@PRINCESHARMA-xd2rd3 жыл бұрын
Sir aap ko like ki jrurt nhi h . You are legend of c language. You are helping thousands of poor guy like me , giving best knowledge free of cost . Please keep it going on
@anmolpandey11812 жыл бұрын
Thankyou sir 🙃
@think9543 Жыл бұрын
thanks harry ❤❤❤❤❤
@rohitverma0789518 күн бұрын
c language krne ke badd konsi language krna kerna better rhega for a good placement sir
@professorpoke3 жыл бұрын
I love goto statement.
@penancepoint4589 Жыл бұрын
Veri nice course ❤
@01kunalkapade343 жыл бұрын
done sir..
@halimaali95852 жыл бұрын
Excuse me can plz add subtitles ur teaching skills are too good ur hindhi language iam not able to understand sir plz help sir😥
@Rid3r3872 жыл бұрын
🙌
@rishabhchatterjee1954 Жыл бұрын
Harry bhai mujhe C program mein goto statement samjha do Aur aap aapki youtube channel ki C program ki Playlist mein goto statement ka jo video banaya tha usme nested loop with goto ka jo code likha tha wo bhi ek bar samjha dena
@CrazyAnalysis_paijaan3 жыл бұрын
Baht achha tha bhai...
@engineerbhai76425 жыл бұрын
Very Talented boy
@Karthik-kt243 жыл бұрын
Thanks brother!
@Sanskar05 Жыл бұрын
Those Who are Learning in 2023 With me,You can Discuss About Coding here,My Friends are Busy in ESE.
@devanshgautam48033 жыл бұрын
Amazing video sir
@dhirajranjane79574 жыл бұрын
I have selected "whether to run code in integrated terminal" option but output does not showing in terminal how can solve this error???? Give me suggestion
@SadamHussain-zj9ei5 жыл бұрын
Thank you sir.
@harshop5295 Жыл бұрын
Thanks❤❤
@saurabh_bansod5 ай бұрын
Awesome 👍😎
@shreyanshgurjar77882 жыл бұрын
maja aa gaya harry bhaiya
@Bullet_Proof_Army_20133 жыл бұрын
nice Explaination Bro
@anonymousgerman28093 жыл бұрын
badhiya video bhaijaan
@vishwabhatt204 жыл бұрын
this was so helpful thankyou
@smgaming81975 жыл бұрын
1 no harry bhai
@tejaslamsoge45114 жыл бұрын
well explained
@bharatchoudhary794 жыл бұрын
Thanks Harry Bhai y
@vanshsharma8954 жыл бұрын
U r best sir
@Jurirek-2K3 жыл бұрын
ye goto statement game banate time use kar sakte hai like jab game over ho tab main menu pe jump hoga....
@hariduttsharma63583 жыл бұрын
I m learning.
@pratiksaindane48882 жыл бұрын
Good sir...🙏👍👍👍
@SahirKiyani11 ай бұрын
at 1:51 break ko loop karna ho ga😅🤣harry bhai..
@mrarmanarya16523 жыл бұрын
Thanks Sir
@ajayyoto4 жыл бұрын
Thanks bhaiya
@sharikfaridi4212 жыл бұрын
Label kis liye use kartai hai sir
@dxtheweeknd29 күн бұрын
can you please suggest a book for good quality questions of coding in c language ??
@Mr_dolui4 жыл бұрын
Instead of goto we can also write while(num!=0){ //code }
@kangnagupta30 Жыл бұрын
plzzzzzzzzzzzzzz python pe video banao
@friendlycreeper10453 жыл бұрын
I thought of downloading vs code but ended up downloading vs 2019😆. And it is not as good as vs code. It can't properly run the c programs so I use dev c++ for c. Am I correct in choosing the IDE or not? I tried Eclipse too but can't get it.
@mrigankaadhikary30873 жыл бұрын
Harry bhai ap c language me nested loop ke upar ak video bana do please
@grifffithcodes5 ай бұрын
Done
@Lnctiann3 жыл бұрын
Love from Bihar
@pillaharmie86643 жыл бұрын
Jabardast
@soumendramohanty76133 жыл бұрын
Pehle bale ache theee.ea bale difficult to understand 😭.👍
@keyur7144 жыл бұрын
thanks
@krunaldhaduk5102 жыл бұрын
C language
@sensei_arena6 ай бұрын
SIgma Batch OP
@sy2jgaming Жыл бұрын
Bhai intital declaration are only allowed in c99 or c11 mode likha ra kya karu For loop ke liye