Lecture 42: OOPs Concepts in C++ || Part-1

Поделиться
HTML-код
  • Опубликовано: 15 окт 2024

Комментарии • 938

  • @Manjot_singh2002
    @Manjot_singh2002 Год назад +318

    1. Padding is introduced in memory allocation to ensure proper alignment of data within structures. CPUs have specific memory alignment requirements for different types of data. When you have a structure containing different data types, the compiler might insert "padding bytes" between members to align them according to the CPU's requirements.
    2. Greedy alignment refers to the practice of arranging the members of a structure or class in such a way that padding is minimized. By placing members with larger alignment requirements before those with smaller alignment requirements, you can potentially reduce the amount of padding required.
    In languages like C++, where memory layout has a significant impact on performance due to cache lines and memory access patterns, arranging members to minimize padding can lead to better memory utilization and potentially improved runtime efficiency.

  • @aryan5035
    @aryan5035 2 года назад +290

    Worth watching for 1.5 hr.
    Understood Everything.
    Great 👍.
    Keep it up.

  • @HeyyRomii
    @HeyyRomii 10 месяцев назад +9

    "Grid Alignment" refers to arranging data members according to the system's memory boundaries, and "Padding" involves adding extra bytes to achieve proper alignment of data members within classes or structures in Object-Oriented Programming.

  • @suyashpurwar631
    @suyashpurwar631 2 года назад +171

    It took me a day to complete this. There were so many things to tinker with. I solidified what I learned here. Did quite a lot of experiments.
    SHAKTIMAN++

    • @ansh2647
      @ansh2647 Год назад +2

      bhai toh lagataar ek baar mai dekha kyuki merko pura din laga notes banana smjhna?

  • @sakshamsharma295
    @sakshamsharma295 2 года назад +237

    After 3 months my placement are coming and this course is very helpful in reversing the concepts and making me more confident In coding . I will recommend this channel to my juniors for learning dsa at an excellent level. Thankyou sir for making this course

    • @vishaldas5692
      @vishaldas5692 Год назад +2

      Mine tooo

    • @111rhishishranjan2
      @111rhishishranjan2 Год назад +10

      You are too late man.These lectures are just basic

    • @higgsboson6274
      @higgsboson6274 Год назад +40

      @@111rhishishranjan2 dont demotivate others, anything can happen with hardwork

    • @helloworld2054
      @helloworld2054 Год назад

      Engineering will always be better

    • @anshulkumar7871
      @anshulkumar7871 Год назад +19

      @@111rhishishranjan2 Lol. People crack job interviews without learning OOPS also, while you are saying this in not enough.

  • @AnjaliSharma-vp9xu
    @AnjaliSharma-vp9xu 2 года назад +124

    Just revising all topic in better way through these videos💯

  • @tanmayghosh8311
    @tanmayghosh8311 2 года назад +6

    1:01:00 solution :- #include "include this library" to your program

  • @chinmaydubey07
    @chinmaydubey07 2 года назад +44

    man as you said earlier this series is absolutely top-notch and the best.

  • @sahilchalke6245
    @sahilchalke6245 8 месяцев назад +10

    That concept of padding and greedy alignment was so cool . I'm watching this lecture after college and I was a little dizzy , but after that I'm ready to go for another hour .

  • @kamalkishorkumar4278
    @kamalkishorkumar4278 Год назад +21

    Sir, you are great. You've taught OOPS in such a way that, no one has ever taught me. Superb teaching method...

  • @KundanKumar-bt1rn
    @KundanKumar-bt1rn 2 года назад +137

    Never compromised with content, does't matter how much time needed..
    Great work bhaiya :)

  • @godzilla5111
    @godzilla5111 Год назад +56

    Homework Solutions - 01:16:47
    1. **`const` Keyword**:
    The `const` keyword in C++ signifies that something cannot be modified. When applied to variables, it means the variable's value can't be changed. For pointers, it can mean that the pointer can't change what it points to or that the data it points to can't be changed, depending on its placement.
    ```cpp
    const int x = 10; // x cannot be modified
    ```
    2. **Using `const` in Object Creation and Member Data**:
    - **Object Creation**: When you declare an object as `const`, it means you can't modify any of its data members (unless they are declared as `mutable`).
    ```cpp
    const MyClass obj; // obj's members cannot be modified
    ```
    - **Member Data Types**: When a class data member is declared as `const`, it means that member cannot be modified after the object is constructed.
    ```cpp
    class MyClass {
    private:
    const int x; // x must be initialized in the constructor and cannot be modified afterwards
    };
    ```
    3. **`const` Functions**:
    A member function that is declared `const` promises not to modify any non-mutable member variables of the object for which it's called. This allows you to call the function on a `const` object.
    ```cpp
    class MyClass {
    public:
    int value = 0;
    int getValue() const { // A const member function
    return value;
    }
    void setValue(int v) { // Non-const member function
    value = v;
    }
    };
    const MyClass obj;
    int x = obj.getValue(); // OK to call
    // obj.setValue(5); // Error, because setValue is not a const function
    ```
    4. **Initialization List**:
    Initialization lists are used in C++ to directly initialize data members of a class. They are particularly useful for initializing `const` members, member objects without a default constructor, and reference members.
    ```cpp
    class MyClass {
    private:
    const int x;
    int &y; // Reference to an integer
    public:
    MyClass(int value, int &ref) : x(value), y(ref) {
    // x and y are initialized using an initialization list
    }
    };
    int main() {
    int externalInt = 5;
    MyClass obj(10, externalInt);
    }
    ```
    In the above `MyClass`, the `x` member is a `const` integer and must be initialized using an initialization list in the constructor. The `y` member is a reference and also must be initialized using the initialization list.

  • @jubintalukdar6019
    @jubintalukdar6019 2 года назад +26

    Very understanding videos.... Examples are real life thing.... Anybody can understand your video bhaiya💗❤️

  • @chandradithyak.g460
    @chandradithyak.g460 2 года назад +37

    U can use ctrl + '/' to comment multiple lines and ctrl + 'L' to clear the terminal bhaiya. Loving your course.

  • @MohanSingh-rj3td
    @MohanSingh-rj3td 2 года назад +43

    you are amazing person with clear cut knowledge and style of course is superb. serving Nobel cause of education for all.
    respect for you 🏅🥇

  • @eagerwolverine3919
    @eagerwolverine3919 2 года назад +154

    And here comes the video that we were waiting for since last couple of days ...!! 😅😁🙌🥳

    • @Relaxingmusic-nk7py
      @Relaxingmusic-nk7py 2 года назад +1

      Where is the complete notes bro? Please reply🙏🙏🙏

  • @BBCNFUSION001
    @BBCNFUSION001 Год назад +21

    You are the gift to programmers sir many many thanks to you.. May Allah keep you happy and healthy ,wealthy(Ameeen)...
    Sir Your teaching way is just Amazing.
    I have No words for your teaching..

  • @vedantkesarwani4006
    @vedantkesarwani4006 2 года назад +36

    i have never watched an educational video so long in one go .This felt like a movie which not let you leave your seat .. So good and kept up hold to study for long hour::

  • @kirtiverma4924
    @kirtiverma4924 2 года назад +37

    Bhaiya you made me fall in love with your series🤩!!! watched 10 videos in a single row.....just love the way you teach in a simplified way.

    • @Raj-jz4fc
      @Raj-jz4fc 2 года назад +10

      PIRO COMDER SPOTTED

    • @nareshvasuja3506
      @nareshvasuja3506 2 года назад +7

      Ek hi poori nahi ho pati, yaha 10 in a row... Kaise kar lete ho bhai/behen ?

    • @kirtiverma4924
      @kirtiverma4924 2 года назад +3

      @@nareshvasuja3506 uss din hi dekh pai thi fir bimar hogyi😂....ab thoda ye task mushkil lag raha h

    • @nareshvasuja3506
      @nareshvasuja3506 2 года назад +2

      @@kirtiverma4924 😅😂😂

    • @111rhishishranjan2
      @111rhishishranjan2 Год назад

      @@kirtiverma4924 Iss video ko samajne mai merai ko 2 din lag gye pura keetai krrtai 🥲🥲🥲🥲🥲

  • @satyamsoni1004
    @satyamsoni1004 8 месяцев назад +2

    brooooo you are just awesome .....your teaching is too good i am able to understand everything thankuuuuu...
    today is 5/02/2024 currently studying it for SEM 3rd exams but after my exams i will learn c++ then will do DSA from you .......i promise to be serious about my future

  • @ariondas7415
    @ariondas7415 Год назад +3

    The best thing about your courses is their 'simplicity'...
    that is what Indians want now...
    so your courses stand out !!

  • @gitanksagar1323
    @gitanksagar1323 2 года назад +4

    aapne paul ka hoa yaaad dualaya bhot achha lga sunke... thats why i love your content sir... its not just plain studying.. you relate everything.. nothing seems boring and hours and hours go away without even noticing..... god bless you siir !!!!!!

  • @sanchiagarwal4909
    @sanchiagarwal4909 Год назад +6

    Maza aa gaya..bohot kuch sikha aur samjha.. badhiya content.
    Respect and Efforts++ 🔥✅🙌🏻

  • @daiict2282
    @daiict2282 2 года назад +8

    Never seen oops concept like this you explained every concept deep

  • @mahavirsingh5790
    @mahavirsingh5790 2 года назад +18

    really love the consistency os+ds on track thank you so much

  • @raj_laxmi6043
    @raj_laxmi6043 2 года назад +23

    Most awaited session from last couple of days Bhaiya......
    Awesome lectures ....
    All d best bhaiya,🤗🤗🤗

  • @Me123-m4k
    @Me123-m4k 2 года назад +6

    usually i don't comment on any video.. but this time can't stop my finger....thank you thank you so much sir ... for making my concepts clear and giving me confidence...... :)........

  • @007_roushankumar7
    @007_roushankumar7 2 года назад +6

    watched this video 2 times and now i feel lot of comfidence when someone talks about OOPs 😃😃

    • @VishalDhiman-nf1wu
      @VishalDhiman-nf1wu 15 дней назад

      @007_roushankumar7 can you explain about double pointer in oops😂😂

  • @namanshah2688
    @namanshah2688 2 года назад +3

    bhaiya your oops series is one of the best on you tube
    bty sir aapne videos ni dale kuch dino se ?... just asking.

  • @abhiramgottiparthi9366
    @abhiramgottiparthi9366 Месяц назад +1

    The depth of the conceptsis just amzing

  • @sherebanoburhani8939
    @sherebanoburhani8939 2 года назад +104

    Keep the pace high!!
    As we are getting back to online classes I can give maximum time to this.
    Present bhaiya
    Lots of love❤

  • @tanaygada914
    @tanaygada914 3 месяца назад

    Hi, As you’ve interviewed with DE Shaw, you have a deep understanding of the extent to which OOP concepts are asked in their interviews. Could you please suggest additional resources for mastering OOP?

  • @MdRizwan-uu9dv
    @MdRizwan-uu9dv 2 года назад +20

    Padding is used to prevent the unnecessary wastage of CPU cycle by creating empty block in memory.
    But Greedy alignment ka koi refrence nahi mil raha hai bhaiya.

    • @ayushgoel4145
      @ayushgoel4145 2 года назад +2

      Also called as Data Structure Alignment, just search its available on GFG.

    • @akshaysinghbhadoriya7967
      @akshaysinghbhadoriya7967 2 года назад +6

      greedy alignment mtlb ki data type ko particular way me alighn krna taaki vo minium processing cycle me jyada data types ko fetch aur process kr paye

    • @nik7867
      @nik7867 2 года назад +1

      It’s on javatpoint

  • @harshitajaiswal9186
    @harshitajaiswal9186 16 дней назад

    Very much impressed with the concept of padding and greedy alignment. Understood something new🙌🙌

  • @shivanshsrivastava4512
    @shivanshsrivastava4512 2 года назад +11

    Unbelievable teaching experience such a nice teaching way 😃😊

  • @sanjaygatne1424
    @sanjaygatne1424 2 месяца назад

    int is not always 4 bytes, it depends on platform. it is at least 2 bytes and max 4 byte , as per c++ specification till now.

  • @rishirajtandon3849
    @rishirajtandon3849 2 года назад +8

    Thanks, please keep releasing DS video daily without break 🙏

  • @maheshchoudhary5605
    @maheshchoudhary5605 2 года назад +1

    Much awaited video aa gayi hai, bcoz ab tak sirf theory padh rahe the but is bar interview me kaise pucha jata hai, uske according padhne wale hai. So excited for this.

  • @nagasrikuncharapu3736
    @nagasrikuncharapu3736 7 месяцев назад +1

    why don't you make a string insted of a char array ? wouldn't it be much easier to use c++ abilities ?

  • @professorhun3047
    @professorhun3047 2 года назад +12

    Your method of teaching is outstanding sir you deserve millions likes and subscriber👀🔥

  • @muntahaatif5828
    @muntahaatif5828 9 месяцев назад +1

    Thank you sir apk is lec say mera oop ka paper acha hogea, pehli bar mujay oop programming sai say smaj ai hai ❤🎉🎉

  • @devangmathur5809
    @devangmathur5809 2 года назад +6

    Simply Wow! Get to learn some new concepts in addition to what i have learned.

  • @alibaig1258
    @alibaig1258 2 года назад +1

    AOA
    in the first part you made class with char name[], int age,..
    but i was unable to set value to char name will using in main() ???
    please guide

  • @ganeshninale7122
    @ganeshninale7122 2 года назад +5

    I really want to thank you for making combined play list for cpp and dsa thank you so much really appreciated once again thank you

  • @priyabharti2818
    @priyabharti2818 Год назад +2

    This is the best explanation of oops concept..!! Startingly i got rejected in technical rounds because i don't know much about oops..!! When i completed these two videos of oops then i'm getting qualified in technical and getting rejected in hr rounds.. double oops...!!😂..!! Finally i made it..!! And got selected..!! Thank you so much...!! Your whole series of this DSA concept is awesome..and this oops is just fab...!!!

    • @adityaraj04
      @adityaraj04 Год назад

      Where did you get the job? Did you just watched only this playlist?

    • @amaan1180
      @amaan1180 Год назад

      Where did you get placed.... Did you follow just this playlist or something extra too @priyabharti2818

  • @fahadraza7152
    @fahadraza7152 Год назад +2

    All things are clear and concise....Thanks Babbar Bhaiya

  • @anuragpandey8165
    @anuragpandey8165 2 года назад +4

    With these kind of videos no one can stop getting me placed in top MNC's.

  • @postfreeedits
    @postfreeedits 8 месяцев назад +1

    Paul's supperpunch,jin kazama everything was just ❤

  • @kamransajjad8798
    @kamransajjad8798 2 года назад +11

    I really love this series ♥️ thanks sir
    You are really a leagend 👍🏻

  • @JustwaitNwatch-w
    @JustwaitNwatch-w 2 года назад +1

    Greedy align and padding i searched myself and got to know that
    Our operationg system is of 32/64 bits
    And if our OS is 64 bits it means that the compiler will read 8 bytes at a time if OS of 32 bits compiler will read 4 bytes at a time
    Here as we have one int and one char which mskes up 5 bytes the rest 3 bytes will be added as padding so that compiler can read 8 bytes easily ... This also leads to memory wastage ...
    This is what i got to know after searching .... Please correct me if i sm wrong

  • @shubhamsood589
    @shubhamsood589 2 года назад +44

    Hello sir
    Just a small suggestion. Can you also share the resources which you follow to prepare for videos, so that we can also deep dive into the topic apart from watching video.

  • @Ayush-1911
    @Ayush-1911 5 месяцев назад +1

    padd hi liya and mujhe pta h dobara aaunga ispe in future

  • @ishu.9485
    @ishu.9485 2 года назад +8

    Awesome, congrats bhaiya❤️🎉
    ‼️One complain from you bhaiya, You don't accept linkedIn request!👀 How would we ask for referral from you if you don't accept?😔 You said in previous live that you would reffer us, in future!🤩

  • @mr.writer2903
    @mr.writer2903 11 месяцев назад +2

    litterly i saw this 3 times for more and more better understanding

  • @rohan1765
    @rohan1765 2 года назад +11

    Going to see it tomorrow but thank you so much for the consistency brother, god bless you.

  • @BabaJaniSarkar877
    @BabaJaniSarkar877 Год назад

    Padding meaning in Urdu " Bahrti - karna " matlab ka add karna
    char ' A ';
    ' A ' ki value hexa-decimal ma 10 hoti ha A = 10;
    10 ko binary ma convert karana ka liya hama 2 ka sath LCM lana ho ga
    A = 10 = (1010) or is ki base 2 sa multiply karan ga
    In Right-side-start
    0 = 2 ^ 0 = 1
    1 = 2 ^ 1 = 2
    0 = 2 ^ 2 = 4
    1 = 2 ^ 4 = 8
    so
    1byte = 8 bits = 4 parts ( 1, 2 , 4 , 8 )
    So A will be store in 1 and 2 , 4 , 8 is empty so In case off padding its also be store or add empty values

  • @arncs5587
    @arncs5587 2 года назад +3

    Finally I got this topic. I am waiting for this topic since last couple of days.....🙏 Thank u bro.....🙏🙏🙏😂😂🥳🥳

  • @lakshayanarangbtech4064
    @lakshayanarangbtech4064 2 года назад

    Thank you so much bhaiya apka channel crores m views paae aur hindustan k Engineer to skills pradan kre

  • @sagarpokhriyal6926
    @sagarpokhriyal6926 2 года назад +3

    Finally! Oops concept is here. Op consistency 😎

  • @abhinavjha2896
    @abhinavjha2896 2 года назад +1

    bhaiya aapko na isse 2 part mein padhana chayea tha ek saath access modifier constructor sb bta diye to the point bolu to muze constructor samaz nhi aaya ab dubara dekhunga but aage se 40-45 min ka hi video bnana

  • @srinathsilla5800
    @srinathsilla5800 2 года назад +5

    Finished watching the entire video. The content was awesome. Keep rocking!!

  • @anmolsaxena45
    @anmolsaxena45 9 месяцев назад

    Padding is the addition of some empty bytes of memory in the structure to naturally align the data members in the memory.

  • @RohitRana-tz2lr
    @RohitRana-tz2lr 2 года назад +6

    Thanks bhaiya for teaching OOP's concept in so much depth and details... there are so many things which are new to me and I have understood them.... joshHigh++

    • @interviewrecordings
      @interviewrecordings 2 года назад

      ruclips.net/video/ogUtrqDmiqs/видео.html Azure and Azure DevOps interview with #wipro and #microsoft especially for Midlevel and Beginners

    • @aniketmukhopadhyay2271
      @aniketmukhopadhyay2271 10 месяцев назад +1

      Bro , is this two videos are enough for semester exam?

    • @kanaklata3421
      @kanaklata3421 9 месяцев назад +2

      @@aniketmukhopadhyay2271 yes they are enough but make sure to practice a lot and clear your doubts while practicing at that time only by yourself and you are good to go not only for exams but for anything

  • @syedmuneeb3779
    @syedmuneeb3779 5 месяцев назад

    best video for learning oop. i have seen many channels but this one is flawless.

  • @sheetaltomar9115
    @sheetaltomar9115 2 года назад +4

    you are such an amazing teacher.!!

  • @amanasrani6405
    @amanasrani6405 Месяц назад +1

    29:09 it seems like some important message had been seen by sir🌻

  • @gaonkaladka2373
    @gaonkaladka2373 Год назад +8

    Meanwhile Ramesh ,"Abe yaar main itna famous hogya" 😂🤣😂😂

  • @NishantSharmaddn
    @NishantSharmaddn 2 года назад

    Padding vala bahut sahi bataya...kabhi kisi ne YT me nahi bataya.

  • @tanayvekariya1268
    @tanayvekariya1268 2 года назад +3

    Thank you, sir, for such awesome lectures, it really helps a lot in the time of need...

  • @prathamlokhande2215
    @prathamlokhande2215 Год назад +1

    at 1:00:16 I have a doubt : this->name is a pointer to character array and name passed to setName is a character array and parameters passed to strcpy should be ( character array, character array) . But here it has parameters like (pointer to character array, character array). How is this working??? Please someone explain...🙏

  • @dikshachaubey3452
    @dikshachaubey3452 6 месяцев назад +23

    Meri kal exams hai aur Mai Aaj lecture dekh Raha hu 😅😢😅

    • @user-os2jb2hq5f
      @user-os2jb2hq5f 5 месяцев назад +1

      Meri be kal exams hain 😅😅

    • @adityaraj_79
      @adityaraj_79 5 месяцев назад +1

      ​@@user-os2jb2hq5fkaisa gya exam tumhara

    • @saishthorat3431
      @saishthorat3431 5 месяцев назад +1

      Meri abhi 2 ghante mein hain.😅

    • @Noobcod3r
      @Noobcod3r 5 месяцев назад

      😂us

    • @unknown-hg5ld
      @unknown-hg5ld 5 месяцев назад +1

      Meray 1 gheintay bad

  • @shivangisharma3643
    @shivangisharma3643 2 года назад +1

    Please add the the explanation of greedy alignment and padding in next video,unable to get the clear understanding of it. But want to know so please add it to next video.It's a request.

  • @43_riteshroy13
    @43_riteshroy13 2 года назад +3

    51.41
    gajb bazzati hai

  • @ManishKumar-pb9gu
    @ManishKumar-pb9gu 17 дней назад

    thanks love babber bhai for this quality education in the youtube

  • @therealartist9
    @therealartist9 8 месяцев назад +25

    wasted 1 hour and not learnt something , sorry bhaiya but constructor is something complicated and pls tell the need before explaining it

    • @tousifjaved3485
      @tousifjaved3485 7 месяцев назад +5

      Constructor is used to initialize object without using external methods
      He has explained everything very nicely

    • @Sppuuuuuuyy4667
      @Sppuuuuuuyy4667 7 месяцев назад +1

      Bhai kaunse channel par badhiya se sikhaya hai constructor??
      Pls batana agar pata hai toh

    • @rounakrajput3928
      @rounakrajput3928 7 месяцев назад

      Code with Harry

    • @intisheno6950
      @intisheno6950 6 месяцев назад

      Bhai to pehlii basic seek lay phir akay constructor dhek layna

  • @DeepakKumar-qw7lp
    @DeepakKumar-qw7lp 2 года назад +1

    OS ka intro ek number bhaiya ❤️🎉
    Osm bhaiya❤️🔥🔥🔥🔥🔥🔥🔥🔥

  • @dakshchandore6435
    @dakshchandore6435 Год назад

    best teacher on youtube for coding

  • @avtarchandra2407
    @avtarchandra2407 2 года назад

    29:03 pe jo aapne boli hai ki paid me bhi nhi hoti hai ekdm shi baat hai ...koi structure/class padding nhi sikhata ...jbki interviewer mje lene ke liye puch hi leta hai.

  • @manishrawat3791
    @manishrawat3791 2 года назад +1

    Bhaiya sahi chl rhe hai bss ese he m aur mere sath k babbar class k mates agle 6 month m ya 1 year koi achi job fod dengey
    and sach bolu toh app he sabsi motivation ho reason btane ki jaruart nh but fir bh bta deta hu continues classes till today esa koi nh krta aur nahi ab tk mene koi dekha hai thankyou from one of your student!!
    vase job k baad apke channel m interview toh logey na mera........??
    till that day let's learn something new today too.......

  • @Hope_for_life
    @Hope_for_life 2 года назад +2

    why an object take 8 byte when we put int and char collectively
    class solution{
    public:
    int age;
    char name;
    };
    why it take 8 byte ?????@codeHelp-by Babbar

    • @rhl_
      @rhl_ 2 года назад

      read about class alignment in c++

    • @Hope_for_life
      @Hope_for_life 2 года назад

      @@rhl_ thanks for your effort already discovered it

    • @mohitahir6020
      @mohitahir6020 2 года назад

      aap editor konsa use kr rahe ho

    • @rhl_
      @rhl_ 2 года назад

      @@mohitahir6020 Sublime text , lightweight and clean.

  • @muzammilkhan403
    @muzammilkhan403 7 месяцев назад

    I have learned oops in python and this lecture cleared my concept about oops in c++. Im starting DSA in c++

  • @waniasohaib8153
    @waniasohaib8153 5 месяцев назад

    the link to codestudio requires access.. kindly let me know how to resolve this issue. Hoping for an early response from your side. Thank you

  • @suyashverma156
    @suyashverma156 2 года назад +1

    watched till end! kaffi lamba tha but worth it tha time invest krna isme

  • @only_for_fun1234r
    @only_for_fun1234r 2 года назад +2

    Learn new concept after watching 3 4 videos from other ytubers ,u r great sir

  • @dhruvproperty1827
    @dhruvproperty1827 2 года назад

    sir class me getHealth( ) varible ko kaise access kar raha hai? bina argument pass kare...... ye aisa kyo nahi hoga
    class Animal{
    private:
    int legs;
    char level;
    public:
    int getlegs(int legs){
    return legs;
    }
    char getlevel(char level){
    return level;
    }
    };

  • @The_Shubham_Soni
    @The_Shubham_Soni Год назад +1

    Finally understood the actual meaning of (this pointer) after so many years!!!

  • @parthsati7359
    @parthsati7359 Год назад +2

    Brother, I really felt this was not well explained by you! Maybe I'm wrong because so many here are praising you , but I gave my best to this lecture and think it's so so so confusing!

  • @whoasadkhan
    @whoasadkhan 2 года назад +1

    What i do when I use "strlen" and "strcpy"
    Compiler show me error undefined

  • @vibhudxt
    @vibhudxt 2 года назад

    Ek shanka hai.... If STATIC members are being manipulate by objects , toh k fayda...
    Static members ko static family k through hi access Kiya jaa sakta hai?

  • @bhavnaparvataneni8722
    @bhavnaparvataneni8722 Год назад

    best tutor online, bhaiyya saare doubts in depth clear hogaye!

  • @winteryt1812
    @winteryt1812 2 месяца назад

    bhaiya are these two videos enough for preparation of interviews does this contain all important topics needed for the placement??

  • @purvijain2024
    @purvijain2024 29 дней назад

    bhaiya 21:01 pr void print kyu use hua...mtlb use nhi kr rhe the tab bhi whi output aa rha tha

  • @ahsaanasad
    @ahsaanasad 6 месяцев назад

    Thanku so much sir you are so amazing sir love u❤❤❤
    Sir mn nay bhut sy teachers sy lacture leay h but you are the best ❤❤

  • @jalesasanty9697
    @jalesasanty9697 2 года назад

    Is video ko dekh ke logo ki placement lagi hai bhaiya Dil se respect++

  • @devyanshubhardwaj9460
    @devyanshubhardwaj9460 2 года назад

    bhaiya baaki sab to mast he bs jese aap starting me code memory block me kese run kr raha he wo wala tareeka bhot ssari vedios me missing he usse jyada acche se se samjh me ata tha like koi example leke usse memory me dry run kara kr jarur dikhaya karo please

  • @priyanshusingh7302
    @priyanshusingh7302 2 года назад

    i like ur videos . u teach diffrent from another teachers ....

  • @thetradingtarzan
    @thetradingtarzan 2 года назад

    bhaiya... bhaiya phle majburi m shuru kiya tha lekin ab mja aane lga h

  • @ornatetrout
    @ornatetrout 2 года назад +3

    Thanks brother for such a nice, simple and amazing video.

  • @aryantripathi9790
    @aryantripathi9790 3 месяца назад

    instead of using this health can't we just rename our input variable to something else???

  • @Btznic_
    @Btznic_ 9 месяцев назад

    Good explanation, amazing way of teaching, thank u.