you will never ask about pointers again after watching this video

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

Комментарии • 1,8 тыс.

  • @LowLevelTV
    @LowLevelTV  Год назад +93

    wanna learn more about C? check out my courses at lowlevel.academy (get 20% off)

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

      It's easy. Just add or remove asterisks or ampersands until it works.

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

      * is the inverse function of &

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

      Y= * px = *&x= x; // y= x

  • @rohanjoshi8785
    @rohanjoshi8785 2 года назад +15866

    Working with pointers is easy af... Just try different permutation and combinations of & and * until code works like u wanted it to work... Don't complicate easy things.. xD 😁😁

    • @tenseikenzx-3559
      @tenseikenzx-3559 2 года назад +1268

      Next thing you know it, you created a buffer overflow attack

    • @dakata2416
      @dakata2416 2 года назад +444

      @@tenseikenzx-3559 And that's why we use Rust

    • @TyconXstar
      @TyconXstar 2 года назад +283

      This is wrong in so many levels 😂

    • @williamdrum9899
      @williamdrum9899 2 года назад +261

      Me after 20 minutes of compile time errors:
      __asm__
      {
      MOV DWORD PTR [0xDEADBEEF],%EAX
      }

    • @anon1963
      @anon1963 2 года назад +151

      @@dakata2416 no. that's why we use unique_ptr or shared_ptr.

  • @fang8244
    @fang8244 2 года назад +2120

    One important clarification. The asterisk(*) is an attribute of the variable not the type which your explanation seems to suggest. This distinction is important because if you consider the following line:
    int* x, y;
    x is a pointer to an int while y is just an int. If you wanted both to be pointers you would need to write something like:
    int *x, *y;

    • @FriedMonkey362
      @FriedMonkey362 Год назад +226

      So i should do int **pX; instead of int** pX; as a good habbit

    • @fang8244
      @fang8244 Год назад +61

      @@FriedMonkey362 It's up to you. That is how I prefer it as I feel it more accurately reflects the syntax, but Strourstrup (founder of C++) actually prefers it *int* pX;*. There is not "right" way per say, so do what you think makes sense : )

    • @xouxoful
      @xouxoful Год назад +20

      That makes sense : *pX (value pointed by pX) is, indeed, an int.

    • @kiryls1207
      @kiryls1207 Год назад +11

      but int * x, y; is just a syntactic sugar to condense on one line this:
      int * x;
      int y;
      during declaration phase the * operator is treated like the type of memory you'll allocate, otherwise it becomes a unary operator to dereference pointers.
      so when you declare variables it actually makes sense to read "int * x" as "x is a pointer to int" and otherwise, seeing "*x = y" as "assign y to the address pointed by x"

    • @MAX-nv6yj
      @MAX-nv6yj Год назад +2

      @@FriedMonkey362 yes as a good habit 👍🏼

  • @Mutual_Information
    @Mutual_Information 2 года назад +3722

    C++ was the first language I learned.. and I only spent a short time with it. But one thing that made all the difference was having a mental model of computer's memory with addresses and values. Before I knew to do that, C++ was incredibly frustrating. This video is smart to lead with that lesson.

    • @imt3206
      @imt3206 2 года назад +33

      Any resources on learning how computers handle memory?

    • @thebirdhasbeencharged
      @thebirdhasbeencharged 2 года назад +66

      Same, I taught myself C++ well over a decade ago at the wee age of 12 and it took me near 2 years to get pointers. I remember what finally made it click was an analogy comparing it to actual mail addresses, will never forget that enlightening moment.

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

      @@imt3206 in my case, learning how computers handle memory is automatic with learning pointers and data structures like array, stack, qeue, linked list. especially linked list, that shit opened my eyes how linked list is so much superior than array in most cases

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

      ruclips.net/user/shorts2YCtH5_56po?feature=share

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

      ruclips.net/user/shorts2YCtH5_56po?feature=share

  • @kingofthecrows8802
    @kingofthecrows8802 2 года назад +539

    I'm a senior majoring in Computer Science at college. If you're a young person whose looking to learn about programming and computers, keep watching this guy's stuff! All complex systems can be broken down to simpler parts. That's what this channel does very well when explaining complex concepts like pointers. This is the first video I've seen but I'm definitely subbing cuz this guy not only knows his stuff but more than I do!
    My college experience was incredibly lacking in low level courses, which I imagine will be the case at many other universities in the coming future. High-level problem solving has it's place, but low-level is important because a house won't last without a proper foundation. The foundations of computer science are the most important area to master, arguably more important than programming itself.
    Don't be a cog; be the future.

    • @coolperson4582
      @coolperson4582 Год назад +4

      What programming languages were pushed at your college? My college is pushing C++ right out of the gate and forces us to learn Assembly as well. Is your college similar?

    • @pewpewyadead
      @pewpewyadead 11 месяцев назад

      love this

    • @Matt-ir1ky
      @Matt-ir1ky 10 месяцев назад

      @@coolperson4582 What college? You're lucky, enjoy!

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

      @@coolperson4582 You are so lucky, my university enforces java and eclipse. It feels like oracle is lobbying there.

    • @Synflood-dot-txt
      @Synflood-dot-txt 9 месяцев назад +1

      @@coolperson4582assembly in 2024?

  • @Ogrodnik95
    @Ogrodnik95 2 года назад +1261

    Understanding references, pointers, smart pointers and memory is gamechanger and is crucial thing to know. Dont give up trying to understand, it is well worth it and with bit of practice becomes normal to read and understand.
    I regret giving up programming because of this at school, it would have boosted my career as software engineer forward by years had i put more time into it.

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

      But can’t find practice problems online. So far being working with this company for about 7 months and everywhere in the codebase we use pointers and I just get more confused especially when a pointer or reference is passed to a method and returned from a method

    • @Ogrodnik95
      @Ogrodnik95 2 года назад +42

      @@abdiasisibrahim5903 best practice i got was when i tried to make my own simple tile based farming game, so i suggest trying to create something of your own, and when problems arise you need to understand and solve them.
      I didnt ever finish it, so i cant really show how code looks like, but one of many problems i had was how to grow plants, which I resolved by creating timer, to which I subscribed selected plants and called grow method on them when timer said it is time. Problem also included how to unsubscibe them correctly.
      Another issue arised when my game grew too much and I had to split it in smaller modules, so eventually I needed to separate drawing routines from game logic. I remember it being tricky, as my game directly extended from engine.
      I stored tiles and other assets in raw arrays stored at heap, so it also needed some thought to put into.
      Such practice directly tests your knowledge and teaches you a bit about design patterns and how memory and language works.

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

      Making game trainers is a great way to learn about pointers

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

      @@zanityplays how do you make game trainer (sorry I’m not a gamer)?

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

      @@abdiasisibrahim5903 you use a memory searching tool such as cheat engine to find interesting in game stuff such as player health, some debuggers also have this functionality. Then use relevant os APIs to retrieve a handle to the process and modify data at the found addresses

  • @TDG361
    @TDG361 2 года назад +80

    I struggled quit a bit with pointers and references back when I was learning C (my first programming language,) but I did not gave up and eventually managed to understand them. They're so simple, yet so powerful, and open up an almost infinite number of possibilities. Sometimes, I managed to break programs when using pointers, but in general I have no problem using them 😄

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

      I really lost hope to learn the .. i do find mathematics and electronics are more easy 🤦‍♂️🤦‍♂️

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

      can you help me with this, i on to writing a leetcode problem of merging two sorted list, and cant understand understand this line,
      struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2) {
      }
      will you please explain, i had wasted probably 2 hours and still cant understand..

  • @olteanumihai1245
    @olteanumihai1245 2 года назад +24

    The best tutorial so far. This is what high lever languages do all the time with "references" which is just a pointer bound to a value but you cant play with the pointer directly only the value he is pointing too.

  • @ghost_cipher
    @ghost_cipher Год назад +81

    I don’t fully understand everything, but you make me feel like I will one day…and that’s the most important thing I enjoy the most! It’s all about the journey of learning and not always to the final destination! Thank you for this content!

  • @williamdrum9899
    @williamdrum9899 2 года назад +625

    Video idea: How malloc() works and how does it know what memory is considered "free to use". I started programming on retro game consoles where you know ahead of time exactly how much RAM you have at your disposal, so allocation functions in general are very "alien" to me.

    • @gustawbobowski1333
      @gustawbobowski1333 2 года назад +116

      malloc doesn't know. The OS knows.

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

      I figured as much since MS-DOS had a "malloc" feature where you would tell it how much menory you needed and DOS would tell you where it is. But how does the OS know then?

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

      it probably uses mmap or sbrk

    • @Rodrigo-me6nq
      @Rodrigo-me6nq 2 года назад +43

      @@williamdrum9899 Why wouldn't the os know? That's one of the core functionalities an os provides

    • @strongserbian1413
      @strongserbian1413 2 года назад +52

      @@williamdrum9899 it's still the same on any OS if I'm not mitaken.
      The OS has a map of available memory blocks allocated to your program (called pages). When you call malloc, which is a system call, the OS finds a contiguous space of memory allocated to your program where the size you asked for would fit. If not enough memory is available in your page, a new page is allocated to your program.

  • @nati7728
    @nati7728 2 года назад +41

    I’ve been programming for years and I still feel like this video flipped a switch in my brain. Excellent, I’m going to bookmark this

  • @cindrmon
    @cindrmon 2 года назад +156

    i actually appreciated pointers more when i started to learn golang! it really helps especially when you don't always want to expect a return type when making a function and just modify a value that you pass into

    • @robertmarder126
      @robertmarder126 2 года назад +20

      Yes, that's called passing by reference, and it's a very useful feature in many languages to save function call overhead and to return multiple results from a function.

    • @iCybqr
      @iCybqr 2 года назад +15

      Yep! Acknowledging the difference between pass-by-value and pass-by-reference is quite important, and it helps a lot to deeper understand a language.

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

      One decent example can be seen in Visual Basic (just the first one that came to mind), where a methods are assigned a role: either a subroutine (no return value) or a function (has a return value). The function/subroutine parameters can also be prefixed with “ByVal” or “ByRef” depending on what you are going to do with those arguments. It’s quite flexible, but sometimes a bit difficult for some to understand

    • @gg-gn3re
      @gg-gn3re 2 года назад +2

      yep, Go is awesome

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

      @@gg-gn3re I wholeheartedly agree :)

  • @tylerrainey223
    @tylerrainey223 2 года назад +20

    About to finish my computer science degree, and I never really understood pointers because most modern languages abstract this. It's nice to make a full circle though.
    Thanks!

  • @HolyRamanRajya
    @HolyRamanRajya 2 года назад +149

    Understanding isnt hard, applying it cleanly is. Working by bypassing scope might be faster but the need of keeping track of it is hard lest one gets memory leak. Not to mention in bigger teams having to rely on coworkers to apply it cleanly. It becomes a cascading problem with less avenues to debug such bugs.
    edit: 1yr on seems my post got some traction, I want to add something. One of many uses and evolution of a Computer is to be a better Calculator. To that end, computers must be able to provide to a user mildly complex logical constructs/objects on which mathematics can be applied and work on them e.g. plus symbol signifying Concatenation of String objects. One should be able to develop some function without having to think of this and that memory allocation. Usage of pointers should only be approached by the top 1 percentile of experienced devs who is probably designing a solution for other devs; or embedded devs having to work with low level resources but won't have a cascading problem.

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

      That's why we practice! :D

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

      @@chudchadanstud then don't put noobs on your dev team

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

      @@_khaine You can put me on your dev team

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

      @@chudchadanstud not naive at all

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

      Exactly, all these videos explain the concept well, but the real problem is when you are coding something and you dont really understand why you need to use a pointer

  • @maxfiialkovskyi5346
    @maxfiialkovskyi5346 9 месяцев назад +96

    u know arrays, right? well, all of memory is an array. a pointer is an index of this array. yup, thats it.

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

    The
    int *
    can be looked at as the type - it's a pointer to an address space sized to fit an int; bear in mind that different machines or different compilers/options can have different size ints, and declaring that size will let the compiler generate binaries allocating the right number of bits of memory.

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

      this comment touches on something i REALLY hate about C. as far as I'm concerned, char is a fundamentally different type to an char*. which, it is. they're a different size and everything. so WHY can we write declarations like "char a, *b;" creating two variables of fundamentally different types in the same statement? it's stupid and i hate it.

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

      @@SoulSukkur back in the old days people couldn't type very well. And monitors were very low resolution, limiting the number of characters and lines visible. So characters had to be conserved.

    • @Anon.G
      @Anon.G 2 года назад +1

      ​@@SoulSukkur nobody is forcing you to write it like that

    • @chri-k
      @chri-k 2 года назад +1

      @@SoulSukkur i just don’t use multiple-declarations, they are already ugly by themselves.

  • @Nasengold
    @Nasengold 2 года назад +29

    3 min in and I straight up subscribed. The code translation into english is exactly what makes this so easy to learn.
    Thanks a lot.

  • @od1367
    @od1367 2 года назад +81

    thank you so much professor, you taught me something in 8 mins!

    • @LowLevelTV
      @LowLevelTV  2 года назад +10

      Happy to help!

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

      @@LowLevelTV hi
      I am seeing your videos from a week I noticed that your explanation made all our ways clear in doubts but I have a question in this pointers topic on embedded c ?
      The question was why pointers don't use in embedded c
      Can you pls clarify the following questions with your explanation I had this doubt after watching this pointers topic in your channel...

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

      ​@@ramakrishna4092 Rama, here's an answer to the common question "why we have to use pointers in embedded C". If you use the Pico/RP2040 SDK, you have to use pointers, the functions in the SDK demand that, and I think it'd be almost impossible to code for RP2040 in C/c++ without the SDK. As LLL says at 6:44, I figure the RPi programmers used pointers to get around scoping issues. They had to do it this way, so we do as well.

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

      You think you understand pointers now? Then make sense of this type: int (*(*f())[13])()

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

      @@mircopaul5259 wtf is that, lisp?

  • @tayyab.sheikh
    @tayyab.sheikh Год назад +9

    4:32 this line is extremely helpful

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

    I first learned about pointers while trying to make Whack-A-Mole with an Arduino. I wanted to pass a “mole” struct into a void function to mutate it, but couldn’t figure out why it wasn’t working… wish I’d seen this video back then; it would’ve saved me several hours of confused googling lol

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

    5:13 You can also say that if there was no asterisk, you would put the value of the pointer pX, which is a memory address, to the variable Y. You want the value of that memory address, so you put the asterisk there.

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

      > _"if there was no asterisk, you would put the value of the pointer pX, which is a memory address, to the variable Y"_
      which would cause issues

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

      @@yash1152 why?

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

      @@proloycodes i dont remember the specifics, try compiling with the compiler flags _-Werror -Wall -Wextra_ and see, it will tell you.

  • @asadickens9353
    @asadickens9353 2 года назад +97

    I’ve never really used C so i’m more familiar with the newer languages masking this functionality. Listening to this video is really easy to absorb. Honestly if you can show more examples of pointers in a part 2 i think someone could really solidify the knowledge quickly!

  • @cryptic_daemon_
    @cryptic_daemon_ 2 года назад +10

    I found pointers inheretly easy to understand when i was learning them, what can be hard, for me at least, is how to implement them in an effective way. I can understand the difficulty, since it involves computer memory.

  • @t0k4m4k7
    @t0k4m4k7 2 года назад +38

    Great explanation, i think the reason why pointers are so widely misunderstood or hardly understood is the lack of explanation regarding memory layout (which you explained really well) and the not so intuitive syntax

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

      Glad it was helpful!

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

      @@LowLevelTV umh, not to shoot you down or anything, but if i were being honest, this was like basic stuff. it's fine. the real problem i face is with 2D arrays, and passing them to functions.
      the one you explained was just plain variables - it was not at all hard for me. even 1d array is managable, but i can never get pointers to work with 2d arrays, and i thought u'd cover those too....

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

      @@yash1152 Well arrays decay to pointers but it's only the top declarator that does so. A 2d array hence decays to T(*)[N]

  • @bemep0k
    @bemep0k 7 месяцев назад +3

    Thanks! This is the most explanatory and easy to understand video about pointers so far! I've been writing code for ages and never really wondered about how pointers work. Just started with C and your video really helped.

  • @MerrStudio
    @MerrStudio 2 года назад +54

    The thing that was the most confusing for me was the syntax and all of it clicked when you simply explained that the star is used for two different things. I just couldn't understand why star next to type is a pointer but star next to variable is a value under the pointer

    • @antaries778
      @antaries778 2 года назад +14

      " star next to type is a pointer but star next to variable is a value under the pointer"..
      Exactly! I think most tutorials seem to fixate on the memory map element of pointers, which imo isn't that hard to understand. It's the subtly contradictory notation that's that actual source of confusion for most.

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

      Yea, assigning too many uses to the same symbol creates confusion. The concept is easy enough to understand, the grammar is not.

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

    I didn't know what a pointer is but this video is so clear it makes perfect sense. I've watched hundreds of videos over the months and yours are some of THE best. Well done, and much appreciated.

    • @Retrofire-47
      @Retrofire-47 Год назад +1

      i have found that sometimes when i am really, *really* struggling to understand a concept it might simply be a product of obsessively trying to understand it, so your looking at like 50 interpretations of what a function is and bombarding your brain with too much information for the actual concept to have any cohesion. i remember reading that the best way to remember something is, well, i am going to inject the first part 1. apply what you learn to something you care about 2. repeat it [use it] 10 times in a row

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

    The concept of a pointer is the easy part. The difficult part is from 6:00 and onwards.

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

    Watching this before my C++ exam, was stressing hard bc it’s all pointers. It’s so easy now! Thanks bubba

  • @BogdanSerban
    @BogdanSerban 2 года назад +13

    I really understood pointers when I got into embedded programming, where you have to access builtin memory address (registers), read their state or write to them. But wait until you get into typecasting pointers, that gets really fun.

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

      every variable can be a char array if you're brave enough.

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

      @@SoulSukkur you can swap bytes by casting variables into char arrays

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

      And also doing dangerous thing like this is allowed in embedded C bare metal. pointing to random memory.
      uint32_t *random_mem = (uint32_t*)0x200800FF;
      *random_mem = 0xEF; //cause weird behaviour or hardfault.

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

    using a double pointer to create two dimensional structures(rows, cols) has been one of my favorite things to learn in college so far, and it goes deeper when you figure out you can create other pointers to increase the size it gets crazy

  • @o-manthehuman7867
    @o-manthehuman7867 2 года назад +8

    I learned pointers by starting out with JS, then learning about how computers work on the low level, then learning cpp, and trying out pointers. By then it was relatively intuitive lol

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

      that may be because JavaScript doesn't have pointers

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

    Before I did week 5 of CS50 I had the impression that complex data structures just need arrays/lists and that’s it. But now I realise how bloody amazing these things really are. The fact you can link multiple things together all using pointers was such an eye opener when it comes to programming.

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

    I come from the field of PLC programming. Until recently you could only program most PLCs with either a graphical programming language (good for logic tasks) or in assembler of the PLCs processor. (Good for data tasks).
    Pointers were really to only way to implement a loop with a pointer iterating over a given field of data.
    The good thing is pointers and memory handling are really easy in PLCs compared to PCs, so learning pointers there was a good start.

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

      I learned to program PLCs in tech school about 3 years ago. I tell you this RN, my instructor would've thrown me out on my ear if he ever saw a pointer in my code. He nearly did so when I found the JMP command all on my own, especially after I (mis)used it and created an infinite loop. Apparently, not even he used the JMP instruction regularly in some 15 years of PLC coding, so he was in no position or mood to look at my code, see that there was a JMP going up the ladder instead of down, and correct it before problems arose.

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

      getting LabView vibes

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

      @@mage3690 Haha lmao

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

      Pointers in x86 asm aren't terrible. Basically it's just passing an address for some data as an argument. Where it would trip me however is just the way it looks in C. That is going to take some getting used to.

  • @devanandanmanoj7882
    @devanandanmanoj7882 2 месяца назад +1

    As a college student who is learning linked list, stack, queues, trees, graphs, hashtables without a prior knowledge of pointers, i see this as an absolutely good video

  • @Bchicken2
    @Bchicken2 2 года назад +159

    Great video, but I think it required more examples of the applications of pointers. Beginners tend to have a small scope of the concept of pointers with a simple explanation. But honestly to me, pointers can never be explained. Its concept and applications can only be truly understood once we've experimented with it hahaha.

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

      Noted!

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

      It's C's equivalent of "no one can explain what a monad is"

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

      Exactly. All I need is to see use cases.

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

      Basically if you want to pass a huge struct to a function , instead of copying the whole thing in (ie via the copy by value parameter), pass it in by pointer/reference. Of course if you modify the struct in the function it modifies the original.

    • @DavidUrulski-wq9de
      @DavidUrulski-wq9de Год назад +1

      @@napalm5 heh.. that explanation is what I was searching for, thanks

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

    THANK YOU! It surpises me how can a teacher introduce this concept without explaining it at university. This was a life saver

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

    If you have an array of structs, a pointer would be like passing the number inside the brackets, like array[0] or array[3] etc. As C pre complies everything in to tetris blocks repeated at a fixed interval, as each struck inside the array are 12bytes in size (example), so now you can refer to struct members with and offset of 0 to 11, you just pass base number to the functions, an absolute address in memory that is the base number to each "apartment block" and that is called a pointer.

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

    Honestly the best video I have ever seen on the pointers. Great work!

  • @SuperROFLWAFL
    @SuperROFLWAFL 2 года назад +20

    I think what caused the most confusion for me regarding pointers was when using * as the indicator that a variable was a pointer and using the same symbol to de-reference.... I think it would have caused much less confusion if we didn't use the asterisk for both

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

      > _"* is both the pointer declaring and dereference operator.... much less confusion if we didn't use the asterisk for both
      "_
      yeah, i totally agree

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

      Change the spacing and it makes more sense.
      Func(int *pX)
      {
      int y = *pX;
      }

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

      @@protox4 no, it doesn't
      (int *) - type of pointer, that points to integer number
      * - dereference operator
      they're absolutely two different things

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

      @@dadoo6912 it's to do with the whole idea of "declaration follows use". The asterisk is on the variable name because in some weird way, it acts as the dereferencing operator within the declaration.
      Something like `int *pX` really means (in terms of the declaration semantics) "`pX` is something that can be dereferenced (i.e. a pointer) and when you dereference it, you get an `int`."
      Similarly, `double a[N]` reads "`a` is somthing that can be indexed (an array), where the maximum valid index is `N` (you can only access up to address `N-1`, mind), and when you do so, you get a double."
      Another example: `void *pointers[5]`: "`pointers` can be indexed up to `5`, and doing so returns something that when dereferenced gives you `void` (you can't _actually_ dereference a void pointer at runtime, but if you _could,_ you'd supposedly get `void`)."
      Also, `char (*array)[42]` reads "`array` can be dereferenced, which gives you something that can be indexed to give char (max index 42)."
      Finally, `void (*print_function)(char *message)` means "`print_function` is something that can be dereferenced, yielding somthing that can be called (a function), which takes a single argument - given the optional name '`message`' - which can be dereferenced to give a char, and returns nothing (`void`)." Of course, function pointers don't actually need to be dereferenced to call the function they 'point' to, but the `*` differentiates between function pointers and ordinary function declarations.
      Having said all that, I agree it's kind of weird, and could be avoided if C used different syntax for declaration (new languages probably should).

  • @flameofthephoenix8395
    @flameofthephoenix8395 5 месяцев назад +11

    0:12 I only just started learning C++, but I figure pointers are probably the best part of the whole language, and I'm super annoyed that I wasn't able to read an integer as a string using them, I asked someone who knows more about it than me and they said that Windows doesn't want people doing that kind of thing, something like "That could break your computer irreparably if it was allowed," or that I would need Windows Pro instead of Home to do it, what does Windows know about what I want to do with my device? Bogus! If only Windows didn't have corn cob up their but and would let us directly alter the byte tape, it would be most ideal if there was a BrainF interpreter/compiler that used the actual byte tape instead of just a simulated byte tape that is stored on the actual byte tape to keep things safe.

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

      I dont quite understand why you are talking about byte tape and stuff... but you totally should be able to cast a integer pointer to a string pointer, if thats what you mean. Not that its a good idea lol

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

      @@BetaChri5 Sort of what I want to do, but I don't want it to just make an integer 32 become a string "32," that's boring. I want it to rip the binary representation of the integer out and into a string instead. Without any conversions behind the scenes. Not even adding a null pointer to make sure that the string has an end to it.

  • @jayb2067
    @jayb2067 17 дней назад

    Brand new to C and this made something I've been dreading and "pre-confused" about seem much more understandable.

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

    One of the best explanations I have seen so far

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

      Okay what what is THE best one you've seen ?

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

      The only thing i missed was WHY you would use pointers. I have no clue and would love to learn. This sounds just like same variable has different name, sounds more confusing to use than anything else.

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

      @@AndrewTSq why do we use street numbers? also, he explains it in the last part of the video. have you watched it? you cant just "pass variables to functions". either you pass the object itself by value, or you pass the address where it is stored in memory. what's difficult to grasp?

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

      ​@@itellyouforfree7238 to see where we are? and if we are at the right address? Do you mean pointers are to get a variables memoryaddress? but why would you want to use that instead of just using the variable?

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

    This has to be one of the best channels on youtube. I have been fighting this for so god dam long

  • @DavidSmith-bh6ez
    @DavidSmith-bh6ez 2 года назад +4

    - int isn't necessarily 4 bytes, do not ever assume this, use int32_t if you want 4 bytes
    - using p as a prefix is not a good habit. it originates from a misunderstanding how hungarian notation works. it doesn't add anything, we have had editors that can show you types for years and years now
    - the age example misses the point that modifying a copy wouldn't do anything
    - stuff that goes onto the stack is NOT static. it is automatic. static memory either uses the static keyword within a function or is defined outside a function. also an automatic allocation doesn't need to have a statically (at compile time) known size, VLAs do exist

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

    Wtf man this is way easier than I thought, I was having such a hard time to understand pointers. Love you ❤

  • @Spartan322
    @Spartan322 2 года назад +40

    The thing that always bugs me about pointers in C++ isn't complexity or their memory side effects, but the symbols, I know what everything does, but I always confuse the symbols because & has at least 3 different functions as a singular symbol depending on where you put it (bitwise AND, make a variable a type reference, or a get reference operation) as does * (multiply, make a variable a type pointer, or a dereference operation) and it makes reading the code for me a super pain in the ass. I'm totally comfortable with pointers, I just hate the syntax for them.

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

      Dyslexia makes it worse trust me.

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

      @@po1sonseede9001 Yeah I bet, other stupid thing that makes it doubly confusing in C++ is that neither of those symbols apply to the statement as a whole, only to the identifier, so instead of writing:
      int* p_1, p_2, p_3;
      you gotta write:
      int *p_1, *p_2, *p_3;
      even though an overwhelming majority of cases you will have multiple pointers being declared at the same time. Conventionally you would see int* as a type, but for some reason in C and thus C++ int is the type and the *p_1 defines a modification to the type exclusive to the identifier that isn't shared with any other object declaration in the language. Only contributing to C/C++'s anti-intuitive nature.

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

      @@Spartan322 I think what bothers me is everyone wants a C/C++-Like syntax nowadays, completely disregarding if the syntax is intuitive.

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

      ​@@po1sonseede9001 Yeah, everyone keeps trying to copy C/C++ in such a manner that makes it still a pain in the ass, I wouldn't mind new languages taking a lot of the clean parts of C++ and implementing them in a more readable fashion, but for some reason instead we get Rust and Zig where they try to retain a high amount of C comparisons but you need to declare the variable and then the type alongside all these other things that honestly just feel like a snub at C and C++. Like why are we going back to pre-ALGOL mathematical type specifications? In almost every case the type is necessary information and you still need a structure to a declaration of variables, its cleaner to integrate the type into the declaration then making it look like an addon to the declaration. Its even uglier for functions.

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

      You just don't know C/C++... Dont lie to us and to yourself... 😅

  • @Trenchv1
    @Trenchv1 8 месяцев назад

    Before the video even starts. These 3 questions are literally what I've been thinking about for the past few days.

  • @sekki2554
    @sekki2554 2 года назад +13

    A small tip: Change the font you're using in your video. I know, might be weird to hear, but the ; symbole looks so weird, it makes the code look more complicated. I understood pointers years ago and when i saw your code, i was legit scared of it and thought, i forgot something important lol Or sometimes it looks like a " i " and i thought: Yo where is "xi" comming from

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

      Same here, the semi-colon got me confused, needed to back it up a bit to confirm it was indeed just a semi-colon.

    • @DeXorPL
      @DeXorPL 4 месяца назад

      True I thought it’s „i”

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

    To me this isn't a class on pointers, this is a class on teaching. Mad skills at making everything look simple.

  • @1over137
    @1over137 2 года назад +6

    A word of caution. You may be tempted do void* or char* cast your pointers to get past some funky type casting foo, but be warned, if you wish to enable compiler optimisation, it will refuse to optimise code that's be obfuscated (to it) this way. It need to have concrete, validatable frame pointers for the variables. It's not stupid and will fail on a void* and in cases where it sees you casting a char* back to a somethingelse* it may fail too. I say "caution" as fixing this later in any size of code base will ruin you month.

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

    Excellent, thanks. I am a Java dev and the dirty little secret about Java is that it DOES use pointers, but the implementation and management of them is hidden from the user. The downside of that is we aren't used to having to think about it so stepping over into the world of C/C++ becomes challenging because of this.

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

    I want to add, for people trying to understand why the * usage is different when by a type. It's not. The asterisk just isn't by the type, its by the name.
    int * x;
    is not saying x is an int pointer, its saying that dereferenced x is an int.
    This helped me immensely when I realized it, and it explains:
    int * x, y;
    makes x a pointer and y an int since y isnt dereferenced but x is in the declaration.

  • @JoshuaMartinez-ml5hl
    @JoshuaMartinez-ml5hl Год назад +1

    Thank you for the explanation! Pointers took me about two years to be able to use them, but I legit just never understood why, other than that we could manually delete them as needed. Never understood why my code would work or not work with or without pointers, but understanding the static and dynamic part really helps

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

    Thanks for the video. I learned the basics of programming from PLT Scheme and became proficient from Python. I've been trying to learn C and I have a decent understanding of the concepts of pointers and addresses, but was struggling to understand why we need to pass pointers to functions instead of the object itself since that's something Python handles for you in the background. I want to take advantage of the power and speed of C, though, so this is very helpful.

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

      Awesome I’m happy that it helped!

  • @SawyerCarlson-h6f
    @SawyerCarlson-h6f 2 месяца назад

    Thank you. My professor is making a huge deal out of pointers and how difficult they will be, but with this video, they seem to be fairly simple and useful. Thanks.

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

    While pointers as a concept is easy, I think it's rather the C and C++ syntax that creates most of the confusion. Even the 6502 has few addressing modes that use pointers, and they weren't that hard to understand when I was learning them.

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

      What may be worse is that C++ reads RTL and C reads LTR. const char* x in C is a constant character pointer, const char* in C++ is a pointer to a character constant. Lol

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

    I was very fascinated by the pointers concept when I was studying it. When I studied its application in Linked List, I was so amazed to see its applications. The concept is just amazing.

  • @andre0baskin
    @andre0baskin 2 года назад +132

    I've never found pointers to be all that difficult. This may well be the result of learning PDP-11 assembly with its register addressing modes before any high level languages that supported pointers.

    • @SerBallister
      @SerBallister 2 года назад +20

      To be fair, in assembly the ONLY way to read/write things in memory is using a pointer, you have little other choices. Assembly programmers should be fluent in using pointers.

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

      @@SerBallister Assembly programmers also understand that types don't exist and pointers are literally just integers, which is imo what makes the most difference.

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

      I don't remember them being that difficult, either. But I have been writing software for quite some time, now. It's possible they were, when I was learning. What concerns me is that people now seem to want to write code without actually understanding what the machine does with it. That's how you wind up with buggy, vulnerable, bloated and slow software. Of which there is a great deal.

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

      Yeah, I came from 6510 and ARM assembly and never had a single problem with them. Didn't even know the terminology, just used them.

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

      @@fghsgh That comes with a down sides though, people make false assumptions about the languages. In C/C++ pointers aren't just integers and types are very real, to the point where you very easily invoke undefined behavior. People think of C/C++ in terms of assembly when the two have nothing in common, they target an abstract machine, not your hardware.

  • @shin-jo2801
    @shin-jo2801 2 года назад +1

    Holy shit... pointers took me a few week to understand, and i still don't think i completely understand it.
    YOUR explanation is just... _chefskiss_ THANK YOU very frikkin much

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

    Great video! Not sure if it's just me, but I would suggest to change font for some of the examples as the ; looks too much like an i

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

    im not even coding yet
    (although i want to) and this is pretty useful
    dont call your self low level learning, call yourself high level teaching

  • @HUSS_BOSS
    @HUSS_BOSS 2 года назад +17

    who else watched the video and still confused ? 😂

    • @eminem992i
      @eminem992i 9 месяцев назад +3

      lol same

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

      u should leave cs if u cant understand this

    • @Jxhsxn
      @Jxhsxn 5 месяцев назад +8

      @@shrinjoy1352 no they should not your advice is very discouraging, if you want to understand something the only way to do so is with repitition watch this video 20x times and if you still dont get it find another way if you really want to learn something it wont matter how long it takes

    • @gennadyplyushchev1465
      @gennadyplyushchev1465 3 месяца назад +1

      @@HUSS_BOSS I have now even more questions than before video.

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

      @@shrinjoy1352 literal nobody think i should leave cs based on his comment

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

    Every video about pointers I have seen so far has given an explanation of pointers which is exactly the definition of variables.

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

      yeah pretty much. It's just an address variable

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

    I can see why my methodology instructor dedicated much of the lecture explaining those seemingly minor details about pointers and memory location with just a single line of code. Looking at this video, I remind myself of how straightforward the syntax of a pointer is.
    The real challenge for many student learning pointers is forming and retaining a connection between these small chunks of information they already have to figure out what is happening throughout the program.

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

    I think the issue has always been squarely down to the way they are used in c. You cannot intuitively infer what a * or & means if they used terms like addressof instead people wouldn't get so confused. But its like that because only a few ascii symbols were available at the time and so that is the way that it is. If you start by programming a simple micro controller using assembly its gets hard quickly, you basically need a higher level language to take care of branching and addressing memory - when you come at it from that angle it makes 100% sense to the point where you almost invent the need yourself - only to find c has your back.
    If you don't use c at least monthly you forget the syntax and thats when we get into the stabbing * or & in because we know its one of them of some form.
    Efficient code uses pointers because its much faster to point or reference data than to keep moving it. The downside is that since an address is just a number you can very easily point to memory that isn't what you intended. Even the best programmers can easily get caught by an edge case - so there's a trade off between efficient and safe code - i.e. you can spend 20 instructions checking the bounds and 1 instruction copying data to be safe but thats inefficient, so it depends on what your doing.
    By far the largest confusion for students are strings, char arrays, pointers to, const char arrays and when and which to use - discussion for another day.

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

    The best explanation of pointers I ever saw was in Hancock's 'The C Primer' first edition only. I never saw it in any other book on C, and I read a lot of them.

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

    Personally, I didn't have much trouble understanding the concept of pointers and how to use them in C, but a lot of people get thrown off by the fact that the * doubles (pun not intended) as both a type-specifier for a pointer (in an expression like int* or char*) and the dereference operator (in an expression like *p += 1)

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

      Copying from another one of my replies,
      That's the beauty of it, try formatting your code like
      int *foo;
      This basically means foo is a pointer, and you can access the value with *. It also reduces confusion with
      int *foo, bar;
      Here bar is an int, foo is an int pointer. This would be a lot more confusing if I wrote it as
      int* foo, bar;
      which'd make it seem like int pointer is a type, and foo/bar are instances.

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

      @@casualoutlaw540 Yeah that's a useful formatting tip about keeping the *s with the names.

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

    6:00 I use the verbalisation for *pX as
    "value at location to which px points"
    Or generally
    "Value at loc. to which points"

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

    Love this kind of explanation!

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

    such a underrated channel holy shid ive never found someone who can explain this good and easy

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

    I only learned about pointers when I learnt my second language, Rust. I never actually had problems with pointers that much (or Rust really just calls them references, when you say pointer in Rust you are normally referring to a raw pointer.) The syntax is just so easy to understand! And it automatically dereferences for you

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

      References also exist in C++ and are not the same as pointers.
      There's the auto dereferencing you mentioned and also you can't reference another reference, while you can have a pointer to another pointer.

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

      @@waynezor in rust references reference other references all you want... although you don't normally have much reason to.
      To me references have always just been raw pointers but they have guarantees about mutable aliasing (and auto deref). Casting a reference to a raw pointer in rust is a NOP I believe.
      Does C++ have the same no mutable aliasing guarantees?

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

      @@VixieTSQ Let me know if i'm wrong but in Rust you can't have two pointers to the same address because of the one owner rule, when you points to another variable address then the original variable loses the context and dies.

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

      @@sudovon6531 pointing != ownership. With rust references you can either have multiple immutable reference or one mutable reference to one value.
      But pointers in rust are diferent and not commonly used. They require an unsafe block to dereference because you can do whatever you want with them. You can delete all the pointers and let the value leak. You can delete the value and dereference a null value. It's scary stuff.

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

    what an intro brow. Even I didnt watch it yet. Clear to say that Ima question my life

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

    Semicolon ❌ dude sitting ✅

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

    I have been using pointers for a whole ass year now in a VR Company and I never understood them fully (just the basics) it just worked. I had to mix some of the options to see if it gave an error. Lol thanks

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

    You mentioned double pointers and array pointers but didn't dive into them at all. You should make a part 2 on that.

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

      Yep I was wondering if I missed it. I've looked up ** and its simply a pointer to a pointer. So you treat it like nested pointers.
      Ex:
      int myInteger = 7; //assigning an integer value of 7 to myInteger
      int* myPointer = &myInteger; //assigning the address of myInteger into myPointer
      int **myPointerToPointer = &myPointer; // assigning the address of myPointer into the myPointerToPointer.
      printf(myInteger); // prints out 7 because the value of myInteger is 7
      printf(*myPointer); // prints out 7 because the value at the memory address myPointer is pointing to is 7
      printf(**myPointerToPointer); // prints out 7 because the value at the memory address pointed to by the memory address myPointerToPointer is pointing to is 7 (myPointerToPointer ->myPointer->myInteger)
      I know this video is over a year old but I hope this explanation helps someone

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

    If only you had made this video 2.5 months ago. My students really could have used it. As you know, only the most dedicated will ask for help. The less dedicated will either read up on bad internet ressources (looking at you, geeksforgeeks) or not try at all and blame me for failing.
    Seeing how many quit the exam early, a good ressource like this would have been needed. The K&R C book is great and all, but not very compact.
    One thing missing from the video is the meaning of "pointer + x" and difference to "pointer + pointer".
    Some groups had the following code in their homework: "unsigned int n = pointer1 - pointer2;". It took me forever to explain exactly why this is not a good idea.
    Also, thanks for putting the "*" on the right side. "int *p;" vs "int* p;" also takes a long time. Thanks, 90% of the internet for doing it wrong.
    Only thing that I really don't like about the video is that you wrote "(NULL == heapMemory)" instead of "(heapMemory == NULL)", but that's a matter of preference, I guess.

  • @abhirammanthena7333
    @abhirammanthena7333 7 месяцев назад +3

    Mate you lost me at 06:11 , suddenly it did not make sense. I'm still at the basics of learning C, so will revisit this often. But seriously thank you for simplifying the concept of pointers and how to visualize them, it really helped.

    • @MaxwellHay
      @MaxwellHay 7 месяцев назад +2

      In C, everything is passed by value(copy). If you pass a struct instance and trying to change it in that function, you only change a local copy of that struct instance. The 'original' copy from caller is untouched. That's one of fundamental reasons using pointers.

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

      @@MaxwellHay Ohh it makes sense

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

    How did you know I needed this!?
    - That beutiful youtube algorythm

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

    I think the biggest source of confusion is the syntax and why we need to specify the data type when declaring a pointer. Very often, I see people explaining pointers by emphasizing where the data begins (i.e. the address) but not where the data ends!

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

      That's because pointers have very little care for where the data ends that on you to manage. at best a pointer will use its type to figure out the end of the first element but that feels more like syntactic sugar in C. it will quite happily ignore it if you even so much as implicit cast

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

      Because it doesn't matter where the data ends.

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

    Bro why I am even doing a CS course? This video explained more than my lecturer has done in a whole trimester!

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

    I've been programming on the 6809 chip where pointer indirection is built into the instruction set. To me it's clear and makes sense. However I get super confused as soon as I try to apply that understanding to C or C++.

  • @سهامالعرباوي-ي7ز
    @سهامالعرباوي-ي7ز 9 месяцев назад +1

    talk about high level (example: pointer type/pointer name
    class person
    {
    vector*red;
    public:
    void set_red(vector*); ///explain this please
    };
    second example :
    int main()
    {
    vectoromega;///// pointer type start after its type /before its name
    }

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

    Error: segmentation fault (core dumped)

  • @le.petit.b833
    @le.petit.b833 5 месяцев назад +1

    Very good video, makes my final exam 92 pointsThanks a lot!

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

    IT WORKED, THANKS I'VE BEEN LOOKING FOR THIS FOREVER, BUT NO TUTORIAL COULD EXPLAIN IT AS YOU DID

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

    6:49 "malloc failed bruh" 🤣

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

    This is the better video programming content I have never seen, simply insane good.

  • @dawnn2004
    @dawnn2004 6 месяцев назад +3

    im gonna cry

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

    Fucking finally. A channel that explains code by translating it into a sentence. Great explanation, you did a great job explaining.

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

    Great video! Can you give a more advanced tutorial, like using pointers with arrays and functions?

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

    3:45 - wait wait wait - "when an asterisk is placed next to a type it modifies the type" no.
    That is wrong. The asterisk does not modify the preceding type but the following declaration. Yes, that makes a big difference:
    int* a,b;
    What you said would mean that we are declaring integer-pointers "a" and "b".
    But in reality what is going on is:
    int *a, b;
    A pointer "a" that points to integers and an integer "b". The asterisk binds to the name of the variable.
    For your explanation of what "int *px = &x" - why so complicated?
    it becomes much easier to understand if you split that into the 2 parts it is.
    "int *px" - declare "px" to be a pointer to an integer.
    "px = &x" - store the address of "x" in the variable "px".
    with "int x = *px" it is the same - the '*' simply tells us that px is pointing towards something. We do not care what the value of "px" is - we want to know what it points towards.
    So this is "the thing that px points to - take that and assign that value to y".
    5:51 "by doing this we can pass around x by reference instead of value" and this is just flat out WRONG:
    No, "px" is a pointer - those are something different from a reference. A Pointer is its own thing - it takes up memory and holds a value( the address of what it is pointing to), and you can modify it.
    In Contrast to that a reference is nothing but a label - it does not have a place in memory, it does not have its own value. Instead it is a way to speak about another already existing object. It is basically a nickname - it allows you to refer to something that already exists.
    A big problem for beginner programmers is that in C(++) many things have multiple meanings.
    You see a '*' and it can be one of multiple things - multiplication, pointer-to-member, declaration of a pointer, derefrencing a pointer.
    The '&' also has multiple meanings: declare a reference to a variable, take the address of a variable, take an argument by reference, a bitwise operator, a boolean operator, forwarding reference, r-value reference.
    it is best to just look at how they are named - "pointer" - obviously it is pointing to something. And in C(++) that something usually has a type (you want to know if you are dealing with a whole number, a letter, or a chessboard). And as you can describe the type of the pointing thing you can also point to that - so a pointer-to-a-pointer.
    In general pointers have good descriptions in most introductory books, but horrible to outright false descriptions in RUclips "learn it in 1 hour" style crap videos.

  • @LostSendHelp_YT
    @LostSendHelp_YT Год назад +63

    NASA said don't use pointers

    • @varadharlikar
      @varadharlikar 7 месяцев назад +2

      ?

    • @iqwit
      @iqwit 7 месяцев назад +3

      Iirc they said to use references, which are just fancy pointers

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

      @@LostSendHelp_YT the rule of thumb is “try not to start any new project in C language”
      Hopefully, Zig will get mature enough to not make that a big problem

    • @SoftBreadSoft
      @SoftBreadSoft 3 месяца назад +2

      ​​@@ooooooooooo9656 C is the standard at NASA, and they are still writing C. Rust is illegal at NASA until you can remove the borrow checker. Zig would be a possibility.

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

      @@LostSendHelp_YT yeah, but average programmer don't be required to make NASA level code.

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

    I'd find the following much more intuitive:
    *int px = &x ;because it primarily a pointer
    int y = (px) ;like in some asm languages (indirect access)
    But I guess that ship has sailed, at least in C language. Thanks for the video.

  • @WilliamDye-willdye
    @WilliamDye-willdye 2 года назад +8

    I disagree with the current title, **because *I[] &still[] have() *questions().

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

      What questions do you have?

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

      @@petrifiedpanda2869 i believe he is referring to parsing complicated declarations involving pointers...

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

    A pointer is simply using the index of the memory to find the start of a variable. Like pointing to row 3 in a Excel spreadsheet. Or pointing to row 3 in a database table. & is used to dereference, that means digest the jargon in memory and interpret it as the variable type that is declared for the pointer. Because you could read the stuff in memory as an int or a char, but won't make sense in every context. I hope that helps someone. Pointer variables hold the memory value at its index[0] of all memory that holds a variable. I'm going to pass you something that starts at the memory address in the stored in the pointer variable. In that starting memory location declared as this pointer, don't worry about reading out how big it is yet for now, this is where it starts. I'll tell you how to use it later in the code Mr. computer.

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

    I still suck at pointers in general but taking a course in Assembly really helped me understand pointers and memory.

  • @punchcake4832
    @punchcake4832 2 года назад +10

    malloc failed bruh

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

    Seeing pointers in memory view is really helpful to visually see what's going on.

  • @hugo-garcia
    @hugo-garcia 2 года назад +4

    What if your pointer points to a Struct?

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

      The example showing the pass-by-reference shows an example of a pointer to a struct.

    • @hugo-garcia
      @hugo-garcia 2 года назад

      @@mrbaeman39lolman60 yeah but what happens in memory ?

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

      @@hugo-garcia In memory each pointer is just an address, so the address of the struct. The pointer would be the address of the first element of the struct (because a struct is essentially its members lined up one after the other in memory (if you ignore padding), so to access the members, the compiler only needs to jump the needed amount of bytes forward to get the address of the other struct members)

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

      @@hugo-garcia A struct is created with a given size depending on what it contains. For example, a struct containing 2 4-bytes integers would be 8 bytes long.
      Hence this struct would take several addresses in memory, two if we're using a 64-bits (or 4-bytes) OS.
      When you dereference that struct, you get a pointer to the first address in memory that the struct is stored at.
      The same thing happens with arrays in C. For example int array[16] declares 16 contiguous addresses in memory, and yields a pointer to the first address of that array. That's how you iterate over an array in C, you start at the first address, then access to the second element with an offset of 1 byte to the first address, etc

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

      @@hugo-garcia Essentially, it takes that struct's age variable and sets its value to the age argument passed.