3.3 Operators in C++ Programming | Guaranteed Placement Course | 3.3

  Рет қаралды 1,025,557

Apna College

Apna College

Күн бұрын

Apni Kaksha: / apnikaksha
Notes: drive.google.c...

Пікірлер: 1 000
@ApnaCollegeOfficial
@ApnaCollegeOfficial 4 жыл бұрын
Make sure you are downloading the notes available in the description box of this video.
@sadabhalim1936
@sadabhalim1936 4 жыл бұрын
Sure, thanks❤️
@chandanghosh7677
@chandanghosh7677 4 жыл бұрын
Bhaiya chemistry video lecture
@kritikasharma6443
@kritikasharma6443 4 жыл бұрын
Bhaiya I wanna teach pol scienec
@kritikasharma6443
@kritikasharma6443 4 жыл бұрын
Plz reply I wanna do something for humanities
@kritikasharma6443
@kritikasharma6443 4 жыл бұрын
I am messaging u from previous lots of days plz plz replu
@mukulsharma8484
@mukulsharma8484 4 жыл бұрын
You nailed it Aamn bro....👍🔥🔥 Knowledge is literally water 🔥🔥
@mayankagrawal875
@mayankagrawal875 3 жыл бұрын
i was a bit confused in pre and post increment but.... you guys cleared it in a breeze thank guys you are really making a difference
@siasquad7360
@siasquad7360 2 жыл бұрын
++a pehle increment kare phir print kare / a++ pehle print kare phir increment kare
@mrkpbhati
@mrkpbhati Жыл бұрын
=> post increment me starting me statement ko run krega jo pehle se initilize i ki value hai uske bad i ko increment krega eg- i =10 k=i++ now statring i value 10 hai to k me 10 store ho jayega or fir i ki value i=i+1 ho jayegi => pre-increment me eg- i =10 k=++i isme pahele value increment hogi fir statemnet run hoga jese ki ..... i=11 k=11 Jay Shree Ram
@debarshiroy2939
@debarshiroy2939 2 жыл бұрын
cant believe this level of content is being provided by Apna College just for us students. Thank you for such noble work for this country!
@saniyamansuri9607
@saniyamansuri9607 3 жыл бұрын
My interest in programming language is increasing day by day 🤩🤩
@vijaysacademy
@vijaysacademy 2 жыл бұрын
Excellent explanation on pre and post increment operators never seen so much clear explanation. Splendid job guys
@CricketLover-kc6ln
@CricketLover-kc6ln 4 жыл бұрын
Frequency of uploading videos is lit 🔥🔥
@anishdulal3362
@anishdulal3362 4 жыл бұрын
yaar ye di bohot achhe se padhati hai yaar😁.thanks aman bro and .... di
@atin_jagotra
@atin_jagotra 4 жыл бұрын
i have never seen a content of such fine content . it is absolutely great. thankyou so much for this . to all you guys
@goodboy2528
@goodboy2528 4 жыл бұрын
In one example the video has taught undefined behaviour as a operator precedence example
@tah-seen
@tah-seen 3 жыл бұрын
Pre-increment (++i) - Before assigning the value to the variable, the value is incremented by one. Post-increment (i++) - After assigning the value to the variable, the value is incremented. The following is the syntax of pre and post increment. ++variable name; // Pre-increment variable name++; // Post-increment
@Viknesh2411
@Viknesh2411 2 жыл бұрын
thnx bhaiya😊
@saksheepatil2678
@saksheepatil2678 3 жыл бұрын
Aman Bhaiya and his team have started making me love studying.
@R7amos
@R7amos 3 жыл бұрын
Going for sleep ,so giving myself a timestamp 10:53 to watch from on the next day.
@vidhisingh3258
@vidhisingh3258 3 жыл бұрын
Thanks bro... Helped me out too
@R7amos
@R7amos 3 жыл бұрын
@@vidhisingh3258 welcome Vidhi
@abhaypratap9898
@abhaypratap9898 3 жыл бұрын
You should try to finish the video in one shot, that would be great 😊😅
@techeduidea2598
@techeduidea2598 3 жыл бұрын
sir , mam have no experience of teaching that's why I can't understand "Hollow Rectangle Pattern ". please mam aaram se dheere -dheere step by step samajhaiye .
@geheron1946
@geheron1946 3 жыл бұрын
lmao good idea
@GeniusVijay
@GeniusVijay 3 жыл бұрын
I watched all videos of web development playlist. And Today I finally subscribed for this channel... Honestly excellant quality and quantity of content... Thanks a lot.... thank YOU so much... 👌👌😊
@yogeshsanap8453
@yogeshsanap8453 4 жыл бұрын
Excellent practice questions on increment (++) and decrement (--) operators.Thank you sir.
@goodboy2528
@goodboy2528 4 жыл бұрын
The example shown in the video is not taught correctly. If you see carefully the compiler gives one warning about undefined behaviour but the instructor has ignored it. Undefined behaviour should not be taught as an example of pre-post increment/ decrement operator. Although we get output, the same program may cause different output in a different compiler. Search on internet what is undefined behaviour
@yogeshsanap8453
@yogeshsanap8453 4 жыл бұрын
@@goodboy2528 Yeah i got your point.I guess not using brackets () may be the reason for that problem.There were 5 to 7 variables used with increment and decrement operator .I guess if you use brackets() for each variable used in that code then that warning may not come i am not sure about it. I was just thinking about it. I haven't tried that yet.But the concept was clearly explained.
@goodboy2528
@goodboy2528 4 жыл бұрын
@@yogeshsanap8453 Hey Yogesh it's not about brackets. And example might produce different output on different compiler. To simplify it in C/C++ you are not not allowed to change the value of a variable more than once in a statement. So statement like K= ++i + i++ Tries to change the value of variable more than once. Although this will produce some output and not give error. I actually tried to run the above statement on different compilers. When i=10 I got 23 as output on GCC compiler and 22 as output on Clang++ compiler. You can also try. So you see we get different output for same code. Beacuse of undefined behaviour compiler can do anything it likes.
@yogeshsanap8453
@yogeshsanap8453 4 жыл бұрын
@@goodboy2528 Ohh I got it now thanks for your time
@goodboy2528
@goodboy2528 4 жыл бұрын
@@yogeshsanap8453 For proof try running the code I have wrote here : repl.it/repls/ProductiveInnocentLaws the output here is 22. Now copy the code in your computer and then run (I assume you have GCC compiler if not then run the same code here online GCC compiler : www.onlinegdb.com/online_c++_compiler Copy paste the code from first link and run on the second link. You will get 23 as output.
@shivansharora
@shivansharora 3 жыл бұрын
Wow wow wow just wow this quality of education for free revolution has surely strarted for India in the field of Education with this channel kudos to Aman bhaiya and his wonderful team🙏❤️
@nimrasultan4773
@nimrasultan4773 3 жыл бұрын
thank you so much sir aman form pakistan mujy c++ course college may bilkul samaj may nai atta thaa but ap kay is course nay tu yr zindagi hi asan kr di
@bdbrightdiamond
@bdbrightdiamond 3 жыл бұрын
Wohhhh Notes are having examples in C language 😂😂 love you 3000 Aman and team❤️
@techeduidea2598
@techeduidea2598 3 жыл бұрын
sir , mam have no experience of teaching that's why I can't understand "Hollow Rectangle Pattern ". please mam aaram se dheere -dheere step by step samajhaiye
@divyanshtripathi4280
@divyanshtripathi4280 Жыл бұрын
thankyou to the Apna college team for providing this course free with wonderfull explanation.❣🤗
@allyouknow7090
@allyouknow7090 4 жыл бұрын
Why is her voice so sweet? I like your voice ma'am. So soothing
@chandrasinhzala6115
@chandrasinhzala6115 4 жыл бұрын
@@sumitnaiyaa 😄😄
@Wraithshade777
@Wraithshade777 2 жыл бұрын
the explanation is just another level every just got printer in my head all thanks you u.....................
@avijitchoudhury3237
@avijitchoudhury3237 4 жыл бұрын
Amazing series sir. It actually suits me a lot. Please don't stop it at any cost even the views getting lower. Please keep the series on go
@foilanimation4165
@foilanimation4165 4 жыл бұрын
Thankyou aman bhaiya and team🙏
@upmanyuchaudhari2149
@upmanyuchaudhari2149 4 жыл бұрын
Hello Bhaiya, In 2018 you made 3 videos about quick JEE Preparation for Physics, Chemistry and Maths. Please make them this year also.
@akshatvashisht6164
@akshatvashisht6164 3 жыл бұрын
Best ever tutorial, superb, I request everyone to watch full ads comes on this channel so that they can also earn for providing such free and best education, great salute to you guys
@kushagrabachhil2060
@kushagrabachhil2060 2 жыл бұрын
Bhai mere pe ads nahi aate
@jessejonathan523
@jessejonathan523 3 жыл бұрын
Very Good Explaination ! Even Included Advance topics such as reference! great to See That!
@wizards707
@wizards707 4 жыл бұрын
1st view Sir please give us schedule of the course so that we can be prepared🎉🎉🙏🙏
@ASHISHSINGH-ds7xp
@ASHISHSINGH-ds7xp 4 жыл бұрын
Yes it would be really hepful.
@yashkirar5536
@yashkirar5536 4 жыл бұрын
Yes sir
@rahilbudhwani4248
@rahilbudhwani4248 4 жыл бұрын
Yes sir
@pranav_1056
@pranav_1056 4 жыл бұрын
See guys he is really working hard As you guys can see, he uploads a lecture daily So you can plan to do that lecture next day by making a time table according to it Why to put extra pressure on him
@sachin_mdn
@sachin_mdn 4 жыл бұрын
Can anyone tell Is i3 10th gen good for programming
@ramankr0022
@ramankr0022 3 жыл бұрын
thank you very much for this free and educative course, which is helping me a lot to learn c++
@mechanicalbaba2484
@mechanicalbaba2484 3 жыл бұрын
Frankly speaking I now understand this increment decrement; bcs it's so easy to understand, ty
@rajatchaudhary5446
@rajatchaudhary5446 3 жыл бұрын
finally lectures reaching to it's core parts
@rssszz7208
@rssszz7208 9 ай бұрын
From the note some error there I see the issue. The error is due to the attempt to decrement the result of an expression. The postfix decrement operator (`--`) requires a modifiable lvalue as its operand, and the result of the expression `3 * (2--)` is not a modifiable lvalue. To fix this, you can store the result of the multiplication in a variable before applying the decrement. Here's the corrected version: ```cpp #include #include using namespace std; int main() { int result = 3 * 2; printf("%d", result--); return 0; } ``` This way, you first calculate `3 * 2` and then decrement the result.
@chiragsahu9567
@chiragsahu9567 4 жыл бұрын
Love the Way When MAM says YAAR!
@anmoljaiswal3681
@anmoljaiswal3681 3 жыл бұрын
Di thank u soo much mera sapna tha ki mujhe coding sikhna h or mere village mei koi v teacher ya classes nhi thi main 9th class mei hun or aap ke wajah se main ye sikh pa raha hun thanks a lot di. 🤗
@aritradhabal
@aritradhabal 4 жыл бұрын
Great didi
@Soumalyasarkar1
@Soumalyasarkar1 2 жыл бұрын
Aman bhaiya apko bhi bohot bohot badhai♥️
@shiwaniiiiii2605
@shiwaniiiiii2605 4 жыл бұрын
I opened KZbin just to see c++ aya kya nahii ......and it was there .... launched just 1 min phele hii ......and I was ohhhhhmmmggg💯💯🥺❤️🌻🌻.....love you bhiyaa ❤️❤️❤️🥺
@haibaidzokwomandre1468
@haibaidzokwomandre1468 Жыл бұрын
I think India contributed a lot to the right to education. Of course other countries also contributed. Thanks so much. From Cameroon
@KrishanKumar-bt9gz
@KrishanKumar-bt9gz 4 жыл бұрын
Hello Team, It would be really great if you put all questions (c++ placement)in one pdf along with solutions (topic wise and difficulty wise).so that students who have already covered dsa part ,and are appearing for interview in a month time..can easily get prepared with it.! Orelse it's tough to follow course when it will bw completed. It will be great for those final year student who have basic programming skills and also completed DSA,and wants to improve their problem solving skills. And want to revise through! . It is a request to you sir.! It will help a lot!! Keep it up for the good content u are providing.. i wish i had it in my 3rd year .till now i would have completed successfully.! Thanks, Regards!
@AN61015
@AN61015 4 жыл бұрын
drive.google.com/file/d/1FMdN_OCfOI0iAeDlqswCiC2DZzD4nPsb/view
@KrishanKumar-bt9gz
@KrishanKumar-bt9gz 4 жыл бұрын
@@AN61015 thank you so much ankita!
@rameshmalhotra9525
@rameshmalhotra9525 2 жыл бұрын
kzbin.info/www/bejne/a3fWepRqgtVmntE
@tousif8859
@tousif8859 2 жыл бұрын
@@AN61015 😳😳🤯
@adilusman7535
@adilusman7535 2 жыл бұрын
Kindly send me too. 😊 Thanks
@satyamdadsena3480
@satyamdadsena3480 3 жыл бұрын
mam aap great ho, kya pdhaya hai maja hi aa gaya.....
@GeekyRavi
@GeekyRavi 4 жыл бұрын
Thanks ma'am for your efforts 🙏🙏
@Sachin_yadav108
@Sachin_yadav108 4 жыл бұрын
Bro you are Donald duck who was preparing for nda at Unacadmy
@INFINITYDEVELOPMENT0211
@INFINITYDEVELOPMENT0211 3 жыл бұрын
Ma'am aap bahut accha padhati hai
@kanikaaapan9996
@kanikaaapan9996 4 жыл бұрын
Great!!! Every second of this video is worth to watch !!
@rohitbadgujjar937
@rohitbadgujjar937 Жыл бұрын
Mam your teaching skill so amazing 😊😊
@satbirpoonia408
@satbirpoonia408 4 жыл бұрын
Just came to like 👍 video To make teachers motivate Thank you Class 11 course plz
@akash-
@akash- 3 жыл бұрын
until now, this one is most explanative video in the course! Thanks, didi.
@priyanshushukla1760
@priyanshushukla1760 3 жыл бұрын
Everyone is praising Aman bhaiya but I think u should appreciate dii also who taught every topic so well. cheers and thanks to all the team _/\_ :)
@meetdhamecha8324
@meetdhamecha8324 2 жыл бұрын
it's is one of The best course for c++
@ammarrajpoot1558
@ammarrajpoot1558 3 жыл бұрын
Really working amazing!💯💯 No one is teaching like this for free with notes and animated videos Keep it up😍🔥
@SakshiPatil_
@SakshiPatil_ 4 жыл бұрын
Ye di bohot accha padhati hai❤️
@beacoder1221
@beacoder1221 4 жыл бұрын
Studing Here At 5am
@criminalcoder6307
@criminalcoder6307 3 жыл бұрын
Seems like your night had stolen your 'y'..
@_-ghost-_711
@_-ghost-_711 3 жыл бұрын
Question 4 and 6 will give lvalue compilation error, as increment and decrement operator (++ and - - ) will work only on a variable and not on a constant ie; a++ or a-- is correct, but 2-- or 2++ is error.
@hellknightgaming8472
@hellknightgaming8472 3 жыл бұрын
But Bro its c++. you have to define what is 2. Bro listen u see 2 has a value of 2 and when u use decrement or increment 2 get some other value. which is not possible in C++👍. I hope my explanation is correct
@hellknightgaming8472
@hellknightgaming8472 3 жыл бұрын
I think 2 is predefined thing in c++. Just like we change compunds not atoms.
@hellknightgaming8472
@hellknightgaming8472 3 жыл бұрын
@@jassijassi2037 bro isi video ke niche dekho Notes he jo usme dekhna 2-- ko meaningless bolrhka he
@yogeshkumarpandey2343
@yogeshkumarpandey2343 4 жыл бұрын
mam notes me question 1 printf("%d",a) ka function samajh nhi aya. please explain in upcoming videos.
@hritikapal683
@hritikapal683 4 жыл бұрын
We use printf() function in C language like in C++ we're having cout and % is a place holder and d,f are variable specifier as decimal , fraction and many more ..so variable a will hold the decimal value.
@satendersharma7560
@satendersharma7560 4 жыл бұрын
Wo c language hai isliye samajh nahi aa rahi hai
@swarooprajwal8034
@swarooprajwal8034 3 жыл бұрын
bhai kuch farak nhi padega #include using namespace std; intna start me dal dena and instead of printf just type "cout
@ankitpathak5610
@ankitpathak5610 2 жыл бұрын
I am fan of maam's voice ,really amazing to learn something 🙌😌
@murlimonahargupta981
@murlimonahargupta981 4 жыл бұрын
Sir why class 12 videos are not coming. Please make those really fast❤
@nishapawansingh1785
@nishapawansingh1785 4 жыл бұрын
Class 12 videos are on apni kaksha
@murlimonahargupta981
@murlimonahargupta981 4 жыл бұрын
@@nishapawansingh1785 ha bro i know about that but since 2 days there have been no uploads for pcm
@mayankkumartiwari2052
@mayankkumartiwari2052 4 жыл бұрын
@@murlimonahargupta981 oo bro nii h🤣🤣
@pallavigupta660
@pallavigupta660 2 жыл бұрын
maam aap nice explain krti thanku so much ........🙏🙏🙏
@only.adarsh
@only.adarsh 4 жыл бұрын
Hi aman bhaiya i am in class 6 and i know java, python, javascript, and learning c++ from this course 😇😇😇
@vivekkanojiya5337
@vivekkanojiya5337 4 жыл бұрын
👍👍
@KundanKumar-uj2in
@KundanKumar-uj2in 4 жыл бұрын
so you are in class 6, good if u know that much languages just tell me the use of __repr__
@prernadhiman6471
@prernadhiman6471 3 жыл бұрын
​@Shaurya Thareja Then what bout full stack developers?, Data scientist?... think,,think,,think
@Livenx9
@Livenx9 11 ай бұрын
​@@KundanKumar-uj2in😂 even I laughing in the corner 😂
@Soumalyasarkar1
@Soumalyasarkar1 2 жыл бұрын
Great work♥️ didi hats off
@nab7431
@nab7431 3 жыл бұрын
7:05 0-0+1-0 =0 kaise 🤔 Last ma post increment kiya tooo Ham 1 use krenge i ko yaaa 0?? Expression ke andr
@prabhatsharma9681
@prabhatsharma9681 3 жыл бұрын
1
@prajwal_bagewadi
@prajwal_bagewadi 2 жыл бұрын
most complex topics but so easy explaining ❤❤❤❤❤❤❤🙏🙏🙏
@ankurkhandelwal1375
@ankurkhandelwal1375 3 жыл бұрын
I wish more detailed explanation was cited on precedence and associativity
@NITINKUMAR-hm2ls
@NITINKUMAR-hm2ls 3 жыл бұрын
You guys are really revolutionising Indian education
@shivamrajput2157
@shivamrajput2157 4 жыл бұрын
Sir need help please course on Android development please..
@devtalks6943
@devtalks6943 4 жыл бұрын
brother as a final year CSE student i would suggest you to purchase on sale from udemy starting at 400 rs in sales, trust me courses are worth it
@shivamrajput2157
@shivamrajput2157 4 жыл бұрын
@@devtalks6943 thanks Bhaiya I will definitely
@mkacademy5678
@mkacademy5678 2 жыл бұрын
Maam really you are Amazing i like your method of teaching
@sourinkhan9819
@sourinkhan9819 4 жыл бұрын
First Student to see this, I have been regularly seeing every videos
@aqibkhwaja6106
@aqibkhwaja6106 4 жыл бұрын
Pls tell me... Do we need to learn C language before starting this course of C++
@GeekyRavi
@GeekyRavi 4 жыл бұрын
@@aqibkhwaja6106 No brother there is not need for C language knowledge . They are covering the basics in c++ i.e mostly same in c also.
@sourinkhan9819
@sourinkhan9819 4 жыл бұрын
@@GeekyRavi yeah
@mahimasaini2499
@mahimasaini2499 4 жыл бұрын
Same
@anakingaming3687
@anakingaming3687 4 жыл бұрын
Hello, can someone tell m if I should learn javascript or python ?
@ajaybirare1845
@ajaybirare1845 2 жыл бұрын
🙏🙏thank you bhaiya and di..🙏🙏for providing this. Thank you ❣️. thank you soo much. Aisa lagata hai college Jane ki jarurat hi nahi hai. Ghar pe bethake self learning bhi ho rahi hai. Aur confidence bhi bhed raha hai It is possible because of you❣️. Thanks a lot again.
@ripudhman1891
@ripudhman1891 4 жыл бұрын
Your voice is so good . I want to see your face mam 😍
@ARYANKUMAR-yc5tc
@ARYANKUMAR-yc5tc 4 жыл бұрын
Bro ye apni kaksha ki English wali mam hi hai...
@tarungrover2146
@tarungrover2146 3 жыл бұрын
Your course in amazing i liked it a lot I request you please don't stop videos in half of the course...
@ayushgupta1881
@ayushgupta1881 3 жыл бұрын
Amazing session. Thank you Aman Bhaiya and your entire team : )
@dambarudharsoren1898
@dambarudharsoren1898 2 жыл бұрын
Thank you apna collage team for better understanding 🙏 ...
@yashjain5651
@yashjain5651 3 жыл бұрын
It was an amazing lecture ,Thank you so much.
@meinankitv4766
@meinankitv4766 4 жыл бұрын
The correct syntax to cast is (int)ch.
@KundanKumar-uj2in
@KundanKumar-uj2in 4 жыл бұрын
bro what u have written is one way to do typecasting it can be like int(ch); best of luck bro
@meinankitv4766
@meinankitv4766 4 жыл бұрын
@@KundanKumar-uj2in okay thanks for highlighting that.
@sainandansatpathy8631
@sainandansatpathy8631 4 жыл бұрын
Sir please upload class 12 videos. Waiting eagerly. And physics notes also.
@chandanghosh7677
@chandanghosh7677 4 жыл бұрын
Pahli bar itna jaldi dekha
@garvitjain2669
@garvitjain2669 4 жыл бұрын
Bhaiya please Upload physics lectures and notes... Plzzz....And also the schedule of PCM Videos....
@kushagra4401
@kushagra4401 4 жыл бұрын
bhai physics chemistry jee wale lectures apni kaksha channel par upload hote h . waha jake check karo.ye channel college students ke liye h.
@abhishekjha1950
@abhishekjha1950 4 жыл бұрын
#Day3 Aman Sir mai Class 12 std me hoo Aap jo video dal rahe hoo Chem, Phy aur Maths ka sir Please bataoo doo na kab kab konsa video aayega Please sir mai aapke hi bharose hoo Kyuki School khule nahi too online mai bhi kuch samj Nhi aa raha hai Aur aapke lectures bhi bahut acche rehte hai Class 12 ke please sir aapke hi bharoose hoo Please sir Phy, chem aur maths jaldi-jaldi upload kijiyee Kuch padha nhi hai Please sir Aur thanks app joo teacher ko bulaye hoo sab samaj aa raha hai. Sir ye meri dusri ID hai App tak message puche isiliye itna comment kiya Feel aa gya hoga ki kya bitt rahi hai kuch samaj nhi aaraha. Bata too do ki har din kitne video aayenge or konse subject jiss se kuch pressure kam hoga Aur sir app soch rahe honge ki itna time Padhaye mai laga diya hota too Koi bhi topic subject ke complete hoo jate. Par sir samaj hi mai.nhi aayega too kya complete hoga.
@bhavanar20
@bhavanar20 4 жыл бұрын
In the notes the code is in c and not in c++.Please look into it and replace with c++ code. Thankyou
@BarkaDog
@BarkaDog 4 жыл бұрын
You can use printf scanf in c++ also.
@bhavanar20
@bhavanar20 4 жыл бұрын
@@BarkaDog I agree but it isn't used that often. 🙂
@hritikapal683
@hritikapal683 4 жыл бұрын
That isn't a big deal
@aakashsingh1118
@aakashsingh1118 3 жыл бұрын
one doubt: #include using namespace std; int main() { int a = 5; a = (1, 2, 3); printf("%d ", a); return 0; } answer is 3 but associativity of ( ) is left to right. similarly for #include using namespace std; int main() { int a = 5; a = 1, 2, 3; printf("%d ", a); return 0; } answer is 1 but associativity of =(assignment ) is from right to left.
@Abhisheksharma-fs6qc
@Abhisheksharma-fs6qc 4 жыл бұрын
In love with girls voice ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️
@yashshrivastava7541
@yashshrivastava7541 3 жыл бұрын
Simp😏
@atin_jagotra
@atin_jagotra 4 жыл бұрын
ye topic pre - post was hell of confusing for me . and you made it clear like it was nothing all along .
@ritikshrivastava9442
@ritikshrivastava9442 3 жыл бұрын
nice video but you missed the concept of short circuit in case of logical operators i think it needed to be taught but koi na
@CricketLover-kc6ln
@CricketLover-kc6ln 4 жыл бұрын
Aman Bhaiya Op ❤️🔥🔥
@akshnayak9181
@akshnayak9181 4 жыл бұрын
When is the web development course going to be out
@AkhilKumar-zo4rh
@AkhilKumar-zo4rh 4 жыл бұрын
Aman: saans to lene de be..😂😂
@veditra7184
@veditra7184 3 жыл бұрын
Nice sir... Your hard work is revolutionizing digital education
@ramasurareddy7426
@ramasurareddy7426 4 жыл бұрын
Bhayya can you give index of this course.it will be helpful for us.
@roxxyyroy3404
@roxxyyroy3404 4 жыл бұрын
iss playlist ka sbse pehla video open krke dekho starting ke kuch min me dikhaya h aman ne course me kya kya pdhne wale ho wo sbb.
@aftabk1013
@aftabk1013 4 жыл бұрын
First lecture me hai bhai
@deepanshusharma5741
@deepanshusharma5741 3 жыл бұрын
check out the video in which he demostrated to download vs code
@rishabhmishra1691
@rishabhmishra1691 3 жыл бұрын
Tabahi macha rakhi h iss course ne🔥🔥
@ushashah9555
@ushashah9555 4 жыл бұрын
Awesome lectures by members . Can we get a 40 lakh package by this course?
@jitishgupta6424
@jitishgupta6424 4 жыл бұрын
Yes you can apply in tower research after doing this course thoroughly , and easily crack it. Best of luck.
@kumarharsh90
@kumarharsh90 4 жыл бұрын
@@jitishgupta6424 sirf iit B ya iit D me ati hai😂
@jitishgupta6424
@jitishgupta6424 4 жыл бұрын
@@kumarharsh90 sarcasm suna h kabhi ? Ya itna humour nhi h , koi na bro uska bhi course aajaega
@kumarharsh90
@kumarharsh90 4 жыл бұрын
@@jitishgupta6424 bhai mai use bata ra tha kahi vo banda seriously na le le
@jitishgupta6424
@jitishgupta6424 4 жыл бұрын
@@kumarharsh90oh 😂😂😂 sorry , which college bro ?
@priyaV766
@priyaV766 3 жыл бұрын
a+b (here a and b are called operands, + is a operator as they have told us) btw best series...tysm sir and ma'am...
@ankii9859
@ankii9859 4 жыл бұрын
Actually waiting for real ds lecture
@deepkahlon8100
@deepkahlon8100 4 жыл бұрын
Didi you are great
@aayushjoshi4757
@aayushjoshi4757 4 жыл бұрын
A video series on GATE would help a lotttttt.
@hritanjaysinghrana8746
@hritanjaysinghrana8746 4 жыл бұрын
24:43 karai zeher
@KundanKumar-uj2in
@KundanKumar-uj2in 4 жыл бұрын
a=1,2,3; k baare me baat kr rhe ho kya bro
@rishavraj6877
@rishavraj6877 3 жыл бұрын
17:40 u will find most interesting part Easy-pizzy 😆😆😆😂😂
@kashishjain3179
@kashishjain3179 3 жыл бұрын
I was checking comments just to check if someone else have noticed that cute "easy pizzy" lol
@varshasingh694
@varshasingh694 3 жыл бұрын
#include using namespace std; int main() { cout
@yashkirar5536
@yashkirar5536 4 жыл бұрын
Sir plz upload class 12 notes and videos becoz boards are near
@nishapawansingh1785
@nishapawansingh1785 4 жыл бұрын
Yaar class 12 videos are on apni kaksha
@yashkirar5536
@yashkirar5536 4 жыл бұрын
@@nishapawansingh1785 abhi sirf electrochemistry ki video h usmain bhi abhi topic bje hue h
@DarkHorse136
@DarkHorse136 3 жыл бұрын
Didi, you are great yaar!!!!❤❤❤❤❤❤❤❤❤❤❤❤......∞
@vishalgodia94
@vishalgodia94 3 жыл бұрын
Bhaiya we want a telegram group students who have justed coding and you 7 people faculty to help us in solving contest problem especially teacher are important as they know our level and so that they could give us right approach to work with them and they can assist us too
@yusufkhan7324
@yusufkhan7324 4 жыл бұрын
THANK YOU SO MUCH BHAIYA!!!
@pandurangchule4963
@pandurangchule4963 4 жыл бұрын
I want only the background music of vid. 😍
@AhmadHassan-hb3lb
@AhmadHassan-hb3lb 2 жыл бұрын
Come on! This was not at all taught by my University. Great Work.
@swatijha7432
@swatijha7432 Жыл бұрын
kzbin.info/www/bejne/f3uVeamGpK-GjZY
@arhampersonal
@arhampersonal 2 жыл бұрын
It's confusing 📈
@PrashantKumar-nd2xf
@PrashantKumar-nd2xf 7 ай бұрын
Nahi hh 😢
@rdxsamya8061
@rdxsamya8061 4 ай бұрын
Shut up bro it's not confusing
@adityasai5104
@adityasai5104 2 ай бұрын
Abe ❤de if you understood that doesn't mean everyone got understood​@@rdxsamya8061
@eliassspace3866
@eliassspace3866 2 жыл бұрын
Very well explained didi, Thank you very much:)
4.1 Awesome Pattern Questions -1 | Guaranteed Placement Course
23:37
Apna College
Рет қаралды 1,3 МЛН
11. Pointers in C++ | Guaranteed Placement Course
19:03
Apna College
Рет қаралды 660 М.
Когда отец одевает ребёнка @JaySharon
00:16
История одного вокалиста
Рет қаралды 12 МЛН
Every parent is like this ❤️💚💚💜💙
00:10
Like Asiya
Рет қаралды 24 МЛН
Who’s the Real Dad Doll Squid? Can You Guess in 60 Seconds? | Roblox 3D
00:34
If I Wanted a Software Engineering Placement in 2025, I’d Do This
17:51
*Honest* Advice for Aspiring Software Engineers | by Shradha Ma'am
16:13
Which Coding Language should you start with in 2024? For Beginners
10:19
Apna College
Рет қаралды 1,4 МЛН
Introduction to Operator Overloading in C++ | In Hindi
10:23
codeitup
Рет қаралды 128 М.
Functional programming - A general introduction
11:47
Daedalus Community
Рет қаралды 105 М.
Starting Competitive Programming - Steps and Mistakes
9:55
William Lin (tmwilliamlin168)
Рет қаралды 1,4 МЛН
Когда отец одевает ребёнка @JaySharon
00:16
История одного вокалиста
Рет қаралды 12 МЛН