Pointers and structures -- C++ Structs Tutorial #8

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

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

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

    3:53 - made a typo, the comment should be:
    // equivelant to (*p).x

  • @qcnck2776
    @qcnck2776 ปีที่แล้ว +2

    Thanks for a clear explanation of the arrow operator and its equivalent

  • @Ben-wg6uf
    @Ben-wg6uf ปีที่แล้ว +1

    Agreed , I was always a little fuzzy about exactly how this works, thanks!

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

    First time someone says p-> means the same as (*p). Now i understand.

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

    can i pass pointer ans an argument for struct function

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

      Sure. A pointer is just a variable that holds a memory address. Pass it like you would any other variable.