11. Pointers in C++ | Guaranteed Placement Course

Поділитися
Вставка
  • Опубліковано 8 лис 2020
  • Notes of this lecture:drive.google.com/file/d/1CEDE...

КОМЕНТАРІ • 671

  • @galax5130
    @galax5130 Рік тому +137

    My Rules of understanding pointers:-
    '&' - this will return an address of any variable or things.
    '*' - this will dereference an address
    'int *' - this will make a pointer variable
    'variable_name' - this will return value of a 'variable_name'
    Extra:-
    swap(a,b) - Call by value
    swap(&a,&b) - Call by reference

    • @sudhanshunain4690
      @sudhanshunain4690 Рік тому +1

      Thank you so much!!

    • @herohera3497
      @herohera3497 Рік тому +1

      char* can also make pointer variable.

    • @degenerateweeb1510
      @degenerateweeb1510 10 місяців тому

      any data type with star will make a pointer variable which can be used to address a memory location containing data of same data type as pointer@@herohera3497

  • @shreyaschavhan5522
    @shreyaschavhan5522 3 роки тому +303

    Pointers Concept - 0:10
    Pointer Arithmetic - 4:10
    Pointers and arrays - 6:29
    Pointer to pointer - 11:00
    Passing pointer to function - 12:55

    • @desicoder
      @desicoder 3 роки тому +6

      Hi everyone,
      I've created this updated video on POINTERS in C++: ua-cam.com/video/NwZL2UjHQZQ/v-deo.html
      Do check it out. I'm sure you'll like it :)

    • @ujjwalrockriser
      @ujjwalrockriser 3 роки тому +2

      *a++ karne se 2 hi aa rha he par *a += 1 karne se kaam de raha he aur 3 aa rha he, koi agar comment padh raha he to please bata do ye kyun ho raha he please.

    • @shreyaschavhan5522
      @shreyaschavhan5522 3 роки тому +4

      @@ujjwalrockriser Dekho! Hum pointers address store karne ke liye use karte hai! So Jab tum address ko baghaoge i.e. *a++ karoge toh tumhara address next jagah par point karega jaha par kuch nahi hai.
      and jab tum *a+=1 karte ho tab address nahi increment hota hai, tab a par joh element hai usme 1 add hota hai! bcz jab hum *a++ karte hai tab memory address +2 se badhta hai, and jab hum *a+=1 karte hai tab woh element me 1 add hota hai.
      Samjhe?

    • @sanyamratreja5457
      @sanyamratreja5457 3 роки тому +3

      @@ujjwalrockriser *a++ ki jagah (*a)++ try krke dekho, mera *a++ se nhi hua tha lekin brackets se kaam krgea,... ab bina brackets k kaam naah krne ka kaarn to meko bhi smjh nhi aaya, aapko smjh aaye to btaana

    • @ujjwalrockriser
      @ujjwalrockriser 3 роки тому +1

      @@sanyamratreja5457 bhai ye comment ke liye tarash gaya tha

  • @myhp8300
    @myhp8300 2 роки тому +268

    The point is we can't increment the pointer directly as *a++;
    It'll still print a=2 but using (*a)++; gives the incremented value
    It is somewhat similar to BODMAS rule. We need to dereference the pointer a then increment it
    Thank me later!

  • @dhruvbhutani9965
    @dhruvbhutani9965 3 роки тому +209

    This has become a part of my daily schedule

    • @ujjwalrockriser
      @ujjwalrockriser 3 роки тому +3

      *a++ karne se 2 hi aa rha he par *a += 1 karne se kaam de raha he aur 3 aa rha he, koi agar comment padh raha he to please bata do ye kyun ho raha he please.

    • @monu_7712
      @monu_7712 3 роки тому +2

      @@ujjwalrockriser call by reference dekh lo aa jayega smz

    • @ujjwalrockriser
      @ujjwalrockriser 3 роки тому

      @@monu_7712 samjha nahi

    • @tipsandtricks9526
      @tipsandtricks9526 3 роки тому

      Same Problem

    • @viveksingh_01
      @viveksingh_01 3 роки тому +4

      @@ujjwalrockriser are bro aisa isliye hai kyunki *a++ karne pe '++' operator ki precendence zyada hoti hai '*' se to vo address ka increment kar deta hai phir uss increased address ko dereference karta hai jisse apna original a same hi rehta hai
      iss issue ko solve karne ke liye apan ko bas (*a)++ ye likhna hai jisse pehle dereference ho phir increment

  • @khatariinsaan5284
    @khatariinsaan5284 3 роки тому +8

    a BIG Thanks to Aman SIr & there Team !!
    Such a Great Efforts for student's who can't afford colleges or classes
    without showing any add's between the video

  • @anudeep0129
    @anudeep0129 3 роки тому +85

    I don't know why people hate this kind of videos when someone is working so hard doing animation, writing the script, notes, editing the videos etc...etc... for your sake! Why can't we appreciate their work which has a huge impact on our society!!!

    • @akash-
      @akash- 3 роки тому +13

      brother you are absolutely right, but also try to understand that if you are an absolute beginner, then did you understand? a big NO, so that's why some beginners didn't liking it!

    • @topanalysis6766
      @topanalysis6766 2 роки тому +2

      @@akash- grammar pro max ultra op bro

    • @Mayankkumar-oi4sw
      @Mayankkumar-oi4sw 2 роки тому +2

      @@akash- i understood it tho

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/5FsIa4Mp3ho/v-deo.html

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/QTaiF8N6i3Y/v-deo.html

  • @vinaydeora7834
    @vinaydeora7834 3 роки тому +16

    Your videos are extremely helpful thanks a lot to everyone who gave their time, effort and money to make these videos ❤️.

  • @syedag.fatima6898
    @syedag.fatima6898 2 роки тому +14

    Don't get for what I was searching for... but really impressed by your way of teaching its awesome Ma Sha Allah 👍🏻💫

  • @ravishukla7493
    @ravishukla7493 2 роки тому +4

    Thanks ma'am, for covering the complete pointer in one video!

  • @allaboutmovies1730
    @allaboutmovies1730 Рік тому +2

    no one never ever explained something like the way you explained hats off 👌💯

  • @VivekWesley
    @VivekWesley 3 роки тому +1

    Thanks Aman for the quality content and Thanks for the crystal clear explanation Urvi. 👍

  • @tonyroy5654
    @tonyroy5654 3 роки тому +32

    Sach me ammman sir pagal ho gya hoon me padh ke aisa content koi nhi dega paise le ker bhi love you sir💕🤘😊

    • @crazyakman0377
      @crazyakman0377 3 роки тому +1

      Hmm

    • @mdateeque3997
      @mdateeque3997 3 роки тому

      Hitler reacting to IIT-JEE RESULTS -- ua-cam.com/video/EioB3UK6IRM/v-deo.html

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/5FsIa4Mp3ho/v-deo.html🙏🏻

  • @akashkashyap8445
    @akashkashyap8445 3 роки тому +2

    i am seriously wanting this video and a great thanks to all the team and didi for this video ♥♥

  • @RahulMishra-mt3cv
    @RahulMishra-mt3cv 3 роки тому +3

    Great video, first time in my life I understand the concept of pointers. Thank you so much :D

  • @akshatchauhan6580
    @akshatchauhan6580 3 роки тому +5

    In my opinion, you're the best teacher on Apna College! ( No offense to other teachers, everyone's doing a great job, it's just my personal opinion, I am a slow learner)

  • @shikhapriya9498
    @shikhapriya9498 11 місяців тому

    Thanks for ur hardwork. The way u explained it's the easier way .

  • @uttamkarmakarece3534
    @uttamkarmakarece3534 3 роки тому +4

    This channel deserves more subscribers ❤️🔥

  • @dishaakalra4503
    @dishaakalra4503 3 роки тому +11

    Dii even though other teachers are good too but i understand each topic the most when you explain it. thank you so much

  • @DeveloperX
    @DeveloperX 3 роки тому

    finally, understood the pass-by reference concept functionality.

  • @ashishsolanki6948
    @ashishsolanki6948 3 роки тому

    Awesome Work by Aman dhattarwal sir .

  • @ShikshaThisSide
    @ShikshaThisSide 2 роки тому +3

    amazing explaination mam, thankyou soo much .
    i think first time i really understood the concept calling by-value and by-reference .

  • @desicoder
    @desicoder 3 роки тому +2

    Hi everyone,
    I've created this updated video on POINTERS in C++: ua-cam.com/video/NwZL2UjHQZQ/v-deo.html
    Do check it out. I'm sure you'll like it :)

  • @hareshparab7808
    @hareshparab7808 2 роки тому +1

    clg mein samaj nhi aaya par hyaa pe smj aaya actually jab live code example dete hai taab smj ata hai thanks so much

  • @Abhishek-bu4tz
    @Abhishek-bu4tz 11 місяців тому

    Really very informative video. Thank you for putting the efforts :)

  • @UnKnown-id7ih
    @UnKnown-id7ih 3 роки тому +2

    Di mza aa gya , now the speed of teaching is very good. I'm loving it. Thanks di and Aman bhiya ❤

  • @ujjawalmishra858
    @ujjawalmishra858 3 роки тому

    Thank You so much bhaiya...and whole ApnaCollegeTeam

  • @sanchitraj582
    @sanchitraj582 3 роки тому +1

    Bhaiya your videos are awesome , always motivate me ❤😇

  • @deepakmandal161
    @deepakmandal161 Рік тому +1

    Very useful video it clear my doubt of pointers

  • @safarihooo0sh503
    @safarihooo0sh503 2 роки тому

    this is prolly the best explanation for pointer

  • @narayanchakrawarti3437
    @narayanchakrawarti3437 3 роки тому

    Thanku soo much Aman Bhaiya ji 🤗 & Ma'am ji

  • @KMMOS1
    @KMMOS1 3 роки тому

    This video's spoken accent is so strong in Indian English that it detracts from learning.

  • @akshatdwivedi530
    @akshatdwivedi530 3 роки тому +6

    This is what kind of lessons I always want.

  • @simplesolutions2621
    @simplesolutions2621 3 роки тому +1

    Excellent explanation! 👍

  • @all_gaming9682
    @all_gaming9682 3 роки тому +1

    This is the amazing bole to next level🤘

  • @nikhilguleria4313
    @nikhilguleria4313 2 роки тому +1

    This is really good leacture gjb💥🔥

  • @skycoding7854
    @skycoding7854 2 роки тому

    very well Mam! amaing and effective learning video.

  • @prasantcp
    @prasantcp Рік тому

    One of the best explanation !

  • @atharvagarwal5367
    @atharvagarwal5367 10 місяців тому +1

    The point is we can't increment the pointer directly as *a++;
    It'll still print a=2 but using (*a)++; gives the incremented value.
    *a++ - Post Increment Operator, it first assigns the value and then increases the value later on.
    If we use
    ++*a - Pre Increament Operator, then it increase the value first and then assigns the value later on.
    So on using ++(*a) will give you the correct answer.
    Thanks !!

  • @harsharyan767
    @harsharyan767 3 роки тому +4

    this is the most amazing explanation I have ever seen on pointers.
    thanks team

  • @anuragtyagi1111
    @anuragtyagi1111 3 роки тому +28

    When God come to help poor students ❤️

    • @kanishkbisht5461
      @kanishkbisht5461 3 роки тому +1

      @Raunak Singh lol, usko free nahi piracy bolte he. Thats why vo telegram par he aur ye YT.

    • @only_for_fun1234r
      @only_for_fun1234r 2 роки тому

      @Raunak Singh where?

    • @only_for_fun1234r
      @only_for_fun1234r 2 роки тому

      @Raunak Singh kaha free course h plzz help 🙏🙏

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/5FsIa4Mp3ho/v-deo.html

  • @sourabhjain8102
    @sourabhjain8102 3 роки тому +5

    If anyone is facing any problem, this can be because ++ has equal precedence with the * and the associativity is right-to-left. You can use ++*a or (*a)++ to specify the order of evaluation.

    • @Harshit_yt1204
      @Harshit_yt1204 3 роки тому

      this should be pinned. now i realize how many actually code and how many simply watch the video.
      Thanks bhaiya.

    • @RiyaSharma-gd3kk
      @RiyaSharma-gd3kk 3 роки тому

      Thanks a lot Buddy.😄

    • @unnatisingh7612
      @unnatisingh7612 3 роки тому

      this was much needed...thank you so much pal!

    • @sourabhjain8102
      @sourabhjain8102 3 роки тому +1

      @@unnatisingh7612 Thank you so much for going out of your way and commenting this. I was having a really bad day and it really cheered me up!

    • @unnatisingh7612
      @unnatisingh7612 3 роки тому

      @@sourabhjain8102 it was my immense pleasure to hear that!!...
      Keep going buddy !

  • @BhupendraSingh-dw7vz
    @BhupendraSingh-dw7vz 3 роки тому +1

    Thnku dii bhut acha smjhaya apne 👍👍

  • @Harjotse
    @Harjotse 3 роки тому +88

    Pls provide us some extra questions sheet for each lecture .
    By the way you and your team is doing great work .

    • @mdateeque3997
      @mdateeque3997 3 роки тому +1

      STAND UP WE NEED {PYTHON}

    • @mdateeque3997
      @mdateeque3997 3 роки тому +1

      Hitler reacting to IIT-JEE RESULTS -- ua-cam.com/video/EioB3UK6IRM/v-deo.html

    • @prankushsharma2588
      @prankushsharma2588 3 роки тому +3

      @@mdateeque3997 jo mil raha wo le le phle 🤣🤣🤣🤣🤣

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/5FsIa4Mp3ho/v-deo.html

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/5FsIa4Mp3ho/v-deo.html

  • @anon35468
    @anon35468 Рік тому

    Thank you didi you explained it very beautifully.

  • @cstechsupport259
    @cstechsupport259 3 роки тому

    good work sister ...your work is good .i impress it . yo u take deeep working

  • @jimcheriyan1801
    @jimcheriyan1801 3 роки тому +51

    Please post at least 2 videos per day if possible 🙏 Either way I am blessed to get such amazing tutorials for free

    • @durveshpal
      @durveshpal 3 роки тому

      ua-cam.com/video/PbcUrsLTDF4/v-deo.html

    • @debiprasannapattanaik8294
      @debiprasannapattanaik8294 2 роки тому +1

      Haath bhi jodte hoo aur bhik bhi maangte hoo🤣🤣🤣🤣

    • @jimcheriyan1801
      @jimcheriyan1801 2 роки тому +4

      @@debiprasannapattanaik8294Apne Guru ke samne hath jodke bhik mangne me kya hi bura hai

  • @aniketkumar967
    @aniketkumar967 3 роки тому +1

    thankyou di❤❤ finally i understand pointer

  • @elements8630
    @elements8630 3 роки тому

    i used to always get confused with pointers. not anymore. good video

    • @omleen3187
      @omleen3187 10 місяців тому

      How to understand the content in English? Subtitles aren't available!

  • @changelife9847
    @changelife9847 3 роки тому +1

    Thank you Sir and Mam.Please make a video on types of pointers and diversified applications.

    • @ajaymore2693
      @ajaymore2693 Рік тому

      Bro In which year you are currently?

  • @ishanksharma2785
    @ishanksharma2785 3 роки тому +2

    Give credits to the person teaching in the description as well. Great Video!

  • @hritiksingh233
    @hritiksingh233 3 роки тому +1

    19:00 apne wnha addresses bheje hain pointer variable k is liy argument variable wnha pointer type k honge to accept the address coming from function call.

  • @saisharanyavattam227
    @saisharanyavattam227 2 роки тому +1

    When we declare an array dynamically ..like
    Int *a=new int[n];
    Can we increment this array

  • @moazzimalibhatti
    @moazzimalibhatti 4 місяці тому +1

    Best video ever on pointer

  • @youreview5785
    @youreview5785 3 роки тому +3

    Loved her work
    Like👍👍👍

  • @arjunyadav-kt5jr
    @arjunyadav-kt5jr 2 роки тому

    she sounds so clear to me!

  • @anmolagrawal28
    @anmolagrawal28 3 роки тому

    Wow what a great explanation
    Hats off Aman bhaiya

    • @mdateeque3997
      @mdateeque3997 3 роки тому

      Hitler reacting to IIT-JEE RESULTS -- ua-cam.com/video/EioB3UK6IRM/v-deo.html

  • @piyushsatange4655
    @piyushsatange4655 3 роки тому +468

    Why you remove all adds we don't want to learn by making anyone financially weak please bro you can add adds and also sponsership

    • @devplays3200
      @devplays3200 3 роки тому +50

      dont worry about his finances he manages it well enough.... not being a hater of him ,, subscribed him for a long time

    • @harshhingu3082
      @harshhingu3082 3 роки тому +6

      @@devplays3200 what are the other things he does to earn money do you know.I am just asking

    • @piyushsatange4655
      @piyushsatange4655 3 роки тому +9

      @@devplays3200 bro I am just saying him that there is no need to compromise at all no one is getting angry for any add

    • @shlokhinge3179
      @shlokhinge3179 3 роки тому +13

      @@harshhingu3082 stock management, seminars in diff collages, affiliated marketing and much more... Our aman bhaiya is all rounder 😎
      Their annual income is 7Cr (some plus students were discussing this in comments session)

    • @mayankkumartiwari2052
      @mayankkumartiwari2052 3 роки тому +20

      @@shlokhinge3179 he doesn't charge any penny for seminars, don't spread rumors

  • @santoshkumarmarar7048
    @santoshkumarmarar7048 3 роки тому +2

    Great brother for self taught students

    • @mdateeque3997
      @mdateeque3997 3 роки тому

      Hitler reacting to IIT-JEE RESULTS -- ua-cam.com/video/EioB3UK6IRM/v-deo.html

  • @s_u_m_i_t__8460
    @s_u_m_i_t__8460 Рік тому

    Shruti didi always explain is very good 👍❤️❤️

  • @archanakalathiya2081
    @archanakalathiya2081 10 місяців тому

    I apologize for any confusion, but the program you provided is an example of 'pass by address,' not 'pass by reference,' as it's important to use the correct terminology in programming.

  • @mohammedraqeeb4392
    @mohammedraqeeb4392 3 роки тому +2

    Massive shout out to Aman bhaiya. At some point in life, I'd love to meet you

  • @Zazbaateditz2307
    @Zazbaateditz2307 3 роки тому +1

    Thanks sir for this course it is very helpful

    • @mdateeque3997
      @mdateeque3997 3 роки тому

      Hitler reacting to IIT-JEE RESULTS -- ua-cam.com/video/EioB3UK6IRM/v-deo.html

  • @ujjalsingh923
    @ujjalsingh923 2 роки тому

    Pdhane k sath sath communication sounds bhot accha h

  • @twinkletwinkle9214
    @twinkletwinkle9214 3 роки тому +1

    Thank you Aman sir ☺

  • @abodisom_official
    @abodisom_official 4 місяці тому

    Advance 5 million congratulations

  • @vinit7820
    @vinit7820 3 роки тому

    Pointer to pointer to pointer to pointer....
    Inception at max level

  • @goldentime4910
    @goldentime4910 Рік тому

    Ma'am ek number samjhaya

  • @rahul-java-dev
    @rahul-java-dev 2 роки тому

    Thank you so much ma'am. 🙏🙏

  • @amitanand6683
    @amitanand6683 Рік тому +1

    14:10 agar int type ki function banna kar return a kara lein aur value ko again a me store kar lein tab toh baat ban jaayegi na??
    int increment(int a){
    a++;
    return a;
    }
    a = increment(a);

  • @SeemaDevi-zs5ol
    @SeemaDevi-zs5ol 3 роки тому +1

    Meri pyari sister.... I am totally jelesh... Your voice because, your voice is amazing😘😘😘😘 Shreya singh

  • @HealthyOm
    @HealthyOm 3 роки тому +1

    Mam jab aap pointer pass kar rahe as an argument then receive karne wala phir double pointer hoga **p so aapne example ke time q nahi liya and output sahi kaise aaya phirbhi?👍

  • @kaushalgupta5837
    @kaushalgupta5837 3 роки тому +11

    "Aya samajh me thoda thoda was so sweet mam"🤗

  • @deepvasoya3648
    @deepvasoya3648 3 роки тому

    didi kya mst explain kiya he(i mean mem).🔥🔥

  • @M.YASIR_SHAHZAD
    @M.YASIR_SHAHZAD 9 місяців тому +2

    we want SHARDHA DEDI in this video to teach this topic please please
    THUMBS UP WHO AGREE

  • @rishabhbhatt9939
    @rishabhbhatt9939 3 роки тому +4

    Sir STL, vector aur c++ competitive programming par video kab aayege

  • @taufeeq-akhtar1491
    @taufeeq-akhtar1491 3 роки тому

    Yaar bohot shukria ap ka

  • @mridulrajbhar12
    @mridulrajbhar12 3 роки тому +3

    Please make a tutorial on volatile keyword. It is bit confusing topic

  • @riteshchoudhary6041
    @riteshchoudhary6041 3 роки тому +2

    ❤❤❤❤ loved as always

    • @mdateeque3997
      @mdateeque3997 3 роки тому

      Hitler reacting to IIT-JEE RESULTS -- ua-cam.com/video/EioB3UK6IRM/v-deo.html

  • @prajwal_bagewadi
    @prajwal_bagewadi Рік тому

    didi your the best teacher in the world lots of love ❤❤❤❤❤❤❤❤❤❤❤🙏

  • @adityatrehan9838
    @adityatrehan9838 3 роки тому

    12:32 didi boht sundar hai aapki hadwriting....meri itni dangerous hai ki 5 marks for extra dark handwriting kat jaate the mere school mein

  • @manishagaur3129
    @manishagaur3129 3 роки тому

    It's possible we can increment in variable value by pointer if yes so please reply me how

  • @mansikumari3917
    @mansikumari3917 Рік тому +1

    Didi arithmetic pointer main char ka increments main toh koi ajeeb se symbols aa gaye mere toh ??

  • @gouravdutta9464
    @gouravdutta9464 2 роки тому +1

    Tysm didi😊♥️

  • @ishmartishtiaq371
    @ishmartishtiaq371 3 роки тому +3

    lecture is very nice can you please tell the short cuts too...

  • @harshhingu3082
    @harshhingu3082 3 роки тому +1

    Hey does anyone knows Aman bhaiya was telling he would be starting web development series but it isn't started till now when it will be starting does anyone knows

  • @harshjha5966
    @harshjha5966 3 роки тому

    kya mast padhaya hai didi......

  • @mohanmandal8417
    @mohanmandal8417 3 роки тому

    Didi can you teacher us the difference between reference variable and pointer variable?

  • @shashankrana977
    @shashankrana977 2 роки тому

    10:43 I still didn't understand why the increment was i, not 4*i. What does array is an indexing pointer mean? Integer would still be stored in 4 bytes yup?

  • @sopnilshinde985
    @sopnilshinde985 Рік тому

    It will be great if you will share which stylus you are using with your macbook-Air while recording videos
    As I can see Its URVI's Macbook-Air

  • @arpanbanerjee5574
    @arpanbanerjee5574 3 роки тому

    Nice explanation 👍🏻

  • @sohanjangid1207
    @sohanjangid1207 3 роки тому

    when i am doing aptr++ and then printing it ;
    it is howing error that too much memory is allocating;
    what wa that?

  • @AdityaGupta-gd1xl
    @AdityaGupta-gd1xl 2 роки тому

    Mam humne swap function banaya tha lekin uska data type void rakha tha matlab woh value return nahi karega , aur aapne function ke ander bhi value print nahi kiya tha toh agar aap function ke ander hi print karde toh swap hojayega na

  • @prajjavalsrivastsva7037
    @prajjavalsrivastsva7037 3 роки тому

    Why do I am getting error when I type ./name_of_file??
    The term './name_of_file' is not recognised as the name of a cmdlet, function, script file, or operable program. Check....

  • @Maryamehsan-sr9gg
    @Maryamehsan-sr9gg 2 місяці тому

    Great work ❤

  • @nemeziz_prime
    @nemeziz_prime 3 роки тому

    I've heard that in C++ one should not leave a variable uninitialised. Isn't that correct?

  • @357mehreenagul2
    @357mehreenagul2 2 роки тому

    Thank you ma'am 🖤

  • @ANSYoutube
    @ANSYoutube 3 роки тому +9

    In few years competition in coding will be like jee .Credit goes to Online educators for providing quality content for free .🙂😁😎

    • @aryanoberoi
      @aryanoberoi 3 роки тому

      really? and you consider that a good thing?

    • @flsh1343
      @flsh1343 3 роки тому

      @@aryanoberoi Obviously good(for doers) , sad for fellow lazy peoples

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/5FsIa4Mp3ho/v-deo.html

    • @rameshmalhotra9525
      @rameshmalhotra9525 2 роки тому

      ua-cam.com/video/QTaiF8N6i3Y/v-deo.html

  • @keshavkhandelwal2243
    @keshavkhandelwal2243 3 роки тому +25

    Sir, your team skip string topic according your timeline of c++ pdf

    • @mdateeque3997
      @mdateeque3997 3 роки тому

      Hitler reacting to IIT-JEE RESULTS -- ua-cam.com/video/EioB3UK6IRM/v-deo.html

    • @rajanand1153
      @rajanand1153 3 роки тому +5

      @@beastman1927 Coding ninja ki course free mein mili hai?

    • @rajanand1153
      @rajanand1153 3 роки тому +1

      @@beastman1927 Bata bro, did u get it in free or it is a paid course?

    • @HarshKumar-kv3xs
      @HarshKumar-kv3xs 3 роки тому +2

      @@beastman1927 its the first lesson and pointer will be covered in most extensive way.

    • @jimcheriyan1801
      @jimcheriyan1801 3 роки тому +2

      @@rajanand1153 no bro coding ninjas charge a lot

  • @suman-majhi
    @suman-majhi 3 роки тому +8

    One notable point is that
    1. int *ptr=&a;
    2. *ptr=&a;
    Here line 1 and 2 is not same thing

    • @jimcheriyan1801
      @jimcheriyan1801 3 роки тому

      Right

    • @it41tanmayaron26
      @it41tanmayaron26 3 роки тому

      @@jimcheriyan1801 what's the difference?

    • @anishdulal3362
      @anishdulal3362 3 роки тому

      @@it41tanmayaron26 1 is correct bcuz we hav t o declare pointers type too

    • @TricknologyHub
      @TricknologyHub 3 роки тому +1

      No you can't use *ptr = &a as it is different.
      In Int *ptr , *ptr is no a variable only ptr is a variable. U can also write it as int** ptr.
      Int* is not integer data type, it is a integer type data type for storing address of a int variable.

    • @it41tanmayaron26
      @it41tanmayaron26 3 роки тому

      @@TricknologyHub ok, so 2nd is wrong

  • @shambhuajwani6438
    @shambhuajwani6438 2 роки тому

    Thank you so much