Dynamic Memory with Malloc - Everything you Need to Know

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 15

  • @codebreakthrough
    @codebreakthrough  ปีที่แล้ว

    🌟Be notified of new C/C++ course: calcur.tech/c-cpp-newsletter

  • @Dulge
    @Dulge ปีที่แล้ว +5

    Quick notes is that this memory is allocated on rhe heap and the heap is much slower than the stack where your local variables and data is stored. Using dynamic memory is powerful when we working with huge classes or structs or when we need our data to have a longer lifetime even when out of scope. Its also very useful when we need to have a buffer for the user input.

  • @byskawica1919
    @byskawica1919 3 หลายเดือนก่อน

    You could also use this altogether :

    int* x = malloc(sizeof(int) *4);
    *(x + n) = y; // n is the list index and y is the assigned value.”

  • @ElementResources-rp8ox
    @ElementResources-rp8ox ปีที่แล้ว +2

    Really nice examples in this video...well done and thank you!

  • @itzikovadia851
    @itzikovadia851 2 วันที่ผ่านมา

    Thanks u very helpfull and clearly lesson

  • @goaheadskinit
    @goaheadskinit 9 หลายเดือนก่อน

    Thank you for your explanation. Really helpful.

  • @m4daruba309
    @m4daruba309 6 หลายเดือนก่อน

    Thank you very much. Very helpful.

  • @tixerz9591
    @tixerz9591 2 หลายเดือนก่อน

    helped me alot. thanks.

  • @tixerz9591
    @tixerz9591 2 หลายเดือนก่อน

    now i have the idea to make dynamic lists like cpp vectors in c

  • @TheBuilder
    @TheBuilder ปีที่แล้ว

    good job

  • @andrewcomtois6542
    @andrewcomtois6542 9 หลายเดือนก่อน

    very helpful

  • @kermitdafrog8
    @kermitdafrog8 ปีที่แล้ว

    Do you use calloc at all?

  • @bilos125
    @bilos125 28 วันที่ผ่านมา

    good

  • @typingcat
    @typingcat ปีที่แล้ว

    Dang, 8 years changes the voice and the face. Unrecognisable. (I came from a 8-year-old database video).

  • @reenamola2162
    @reenamola2162 ปีที่แล้ว +1

    first