What are double pointers in C?

Поділитися
Вставка
  • Опубліковано 18 лис 2024
  • Check out our Discord server: / discord

КОМЕНТАРІ •

  • @zackakai5173
    @zackakai5173 2 роки тому +23

    Encountering double pointers for the first time be like:
    "This is getting out of hand. Now there are TWO of them."

  • @lorisp186
    @lorisp186 3 роки тому +22

    You're the best I found on UA-cam explaining C so far!
    Everytime I'm looking for something and I see you did the video on it. I feel relieved because I know I will understand it and be able to use it in just few minutes.
    Thank you so much

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

    This is one of the excellent topic covered. For this particular video whoever want to get the complete understanding run the code by your own and print the pointer address which will make you crystal clear.
    Great Job CodeVault. Your videos are tremendous helpful.

  • @juanb.figueredo2256
    @juanb.figueredo2256 2 роки тому +1

    Honestly, I've been dealing with pointers for a while now and I really haven't been able to get a grasp on this topic until now. Beautifully explained, excellent video. :)

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

    Omg thx so much! Ur explanations are terrific and truly explain the intuition behind these concepts! Thanks again!

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

    Great explanation and demonstration, thanks!

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

    C syntax is very confusing when it comes to pointers.
    In the last statement
    printf("After the call: %s
    ", str); , str is a pointer variable which holds the address of "This is a test" so I would expect to take the value by dereferencing the str variable like this.... printf("After the call: %s
    , *str); But it is the other way around. This is so much confusing for me, it's a nightmare.

    • @CodeVault
      @CodeVault  3 роки тому +7

      Well, the thing is, strings don't really exist in C as a data type. They are always an array of characters. That's why you have to pass str, since, a pointer can represent an array of something (characters in this case). If we were to dereference (using *str) you would get just 1 character.

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

      @@CodeVault Thank you

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

      @@CodeVault Ok but according your diagram, str is the address of "T", but in your code str returns the string... ?

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

    I really like how you explain things! Well done and thanks :)

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

    Bro you are the best teacher ever. Please do consider a career in teaching. You'll be a hit.

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

    Great Job Code Vault. Thanks for the valuable info.

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

    The pauses that this dude made between sentences reflects how difficult is understand the pointers in c language

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

    Underated channel ! Thank you so much for your work !
    We would love to have a very detailed video about subtilities concerning pointers and chained lists. Because I think there is subtilities between passing a double pointer to a function and a simple pointer. Anyway thanks so much !

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

      There's actually a full playlist regarding linked lists: ua-cam.com/video/uBZHMkpsTfg/v-deo.html
      There are places where double pointers are used and I explain for the most part what's up with them (if you have questions you can leave them in the comments of those videos but make sure to read some of my replies there as a lot of the questions I already answered regarding double pointers when handling linked lists)

  • @gnuwaves743
    @gnuwaves743 3 місяці тому

    Currently in last week of Principles of Programming Languages. Thank you!

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

    You have an immense clarity 👍

  • @joaco.
    @joaco. Рік тому

    I understood by your video, double, triple, n pointers are just hierarchies used to modify lower "rank" pointers.

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

    @Sergiu, many thanks for another gem! It was one of those moments when I felt I got the point but the things became tricky in practice, and I still needed to digest the gist of the problem for some time. :o)
    One needs to watch the whole video, especially the part starting from 5:39, very carefully to grasp the _WHY_ aspect of using double pointers (versus the _HOW_ aspect explained earlier in the video). Anyway, after digging some more, I think I found the following keywords useful to better understand Sergiu's explanation: _variable scope_ , _pointer content, a.k.a address of the first char of the string_ (str) vs. _pointer address_ (&str) vs _pointer dereferencing_ (*str), _data sharing between functions_ and _memory management_ in C. AFAIU, the gist of this video is in C dealing with string literals (behind the scenes) as constants (not variables), hence the need to use a double pointer to redirect the same pointer to a _different memory address_ when one needs to get a new string. C makes a trick pretending to "change" the value of the pointer, but in fact points to another physical memory address for the new string.
    *Question:* Now what happens to the string literal when the same pointer now points to another one, e.g.:
    [const] char* str = "This text" ;
    str = "Another text";
    Does it become a garbage in the memory? Thank you!

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

      I think somehow you're misunderstanding it. There's no tricks that C does when changing a pointer.
      int a = 5;
      int* p = &a;
      int** q = &p;
      Dereferencing q once will lead you to the value of p. Dereferencing it twice will lead you to the value of a. Dereferencing p once will get you also the value of a.
      Regarding your question: String literals are stored in a special place in memory (not the heap nor the stack) similar to global memory. Thus, the answer is: nothing. Nothing happens to that string literal, it's still there.

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

      @@CodeVault Thank you! By 'making a trick', I meant that using a double pointer in C to change the value of a pointer set to a *string literal* you don't actually change or modify the value of that pointer but redirect it to another location in memory, since string literals set through pointers (versus arrays) are constants, aren't they? See my snippet above.

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

      This is where you're wrong:
      "you don't actually change or modify the value of that pointer but redirect it to another location in memory"
      Changing the value of a pointer IS THE SAME as redirecting it to another location.
      str in your example is a pointer. The "Another text" literal returns a const char* which is then assigned to this str. So you are changing the value of the pointer. But NOT the string it's pointing towards. On our shop, there's a PDF file that explains how pointers get assigned and I hope that helps out a bit: code-vault.net/product/ea173333939c13ed960dea60b2007938

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

    Your explanations are so good man!

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

    great video. I practiced with your example. I learned alot. thanks!

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

    Nice -Thanks
    I do have a question though.
    When in main you have a
    void function(char ***s1, char ***s2)
    main()
    {
    char **s1 // list of fields
    char **s2; // list of data for the fields.
    function(&s1, &s2); // this function splits the string into fields and data.
    }
    How should one handle that inside the function so that the list back in main can be printed or used elsewhwere?
    void function(char ***s1, char ***s2)
    {
    // get the number of rows...
    // allocate enough pointers based on number of rows. malloc ...
    // How would add values? I know strdup("") will allocate the memory for the actual string. But, after that I just get errors :)
    // 1
    **s1 = strdup(Field1);
    **s2 = strdup(data):
    // or 2
    *s1[0]= strdup(Field1);
    *s2[0]= strdup(data):
    // seems like I am so off in both cases. Back in main it seg faults.
    }

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

      **s1 = strdup(Field1);
      I'm assuming "**s1" fails due to the pointers not being initiated.
      You will need to do something like this in the function "function":
      *s1 = malloc(sizeof(char*) * N); // N is the number of pointers you want to initialize

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

      @@CodeVault Thank you. I did just that and all is perfect.

  • @caffeinatedinsanity2324
    @caffeinatedinsanity2324 4 роки тому +1

    So basically since you can't do &&&address, ideally double pointers and further mainly serves when reuising values inside functions called inside other functions, right? Because other than that, in a practical case I could just declare a char array and refer it using a regular pointer with the display function

    • @CodeVault
      @CodeVault  4 роки тому

      You're right. Other practical uses include: dynamically allocated multidimensional arrays and modifying a linked list. They are easy to get wrong so, if you can, just use a regular pointer to your data, please do so, it's going to cause less headaches.

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

    Didn’t you have to malloc before assigning str a longer string “another test”?

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

      Hmm, this is a quirk with literal strings in C. Basically when I have something like this:
      char* c;
      c = "This is a test";
      You would think that, since c is not pointing to anything it should cause issues but, in fact, C automatically allocates literal strings (the ones between double quotes) inside a special place in memory (similar to global memory). And, when the literal string is used (like above), it just returns a const pointer to that place in memory.

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

    Thank you sir for this series.

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

    are those two the same?just without one step? i dont get it.
    char str []="sth";
    char* pstr = str;
    and
    char* pstr="sth";

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

      I made a video regarding this question here: code-vault.net/lesson/he9jn5x8b1:1603733522083
      Also this one is related to strings specifically: code-vault.net/lesson/0lvl47m1uh:1603733521536
      Hope this helps

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

      ​@@CodeVault thx❤

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

      Summarizing: 'char mystr[] = "foo";' allocates an array in stack memory area. Same as 'char mystr[] = {'f', 'o', 'o', '\0'};'. And 'char *mystr_ptr = "bar";' allocates a char pointer "mystr_ptr" in stack memory area, pointing to a string "bar" located in read-only memory area. This is the same as 'const char *mystr_ptr = "bar";'

  • @qwqqq2416
    @qwqqq2416 4 роки тому +1

    Hello, thank you for your great explanation.

  • @clarencelucius9085
    @clarencelucius9085 9 днів тому

    So it's a pointer to a pointer?

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

    Sir at 00:12 you said , " these characters are stored somewhere in global memory . "
    Sir , can you please explain this concept to me ( in brief ) or a video on it as why these characters not being global and are still stored in data segment of our program's memory?

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

    When you changed the str pointer from “This is a test” to “This is another test” do you need to free the memory taken by “This is a test”?

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

      No, you don't need to.
      char* str = "This is a test";
      The string "This is a test" is considered a literal and is stored in some special place in memory where all the strings go which is very similar to global memory. When the program finishes its execution it will free it automatically, no need to worry about it.
      You would need to free the memory if, instead, you would do something like this:
      char* str = malloc(sizeof(char) * 100);
      strcpy(str, "This is a test");
      str = "This is another string"; // This would cause a memory leak

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

    then why printf on display fungction have another pointer? u said double pointer already pointed to the string "this is a test"

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

      I think you're confusing between declaration and operators. When you use the asterisk near a data type (like "int* p") you're declaring a pointer. But when you're adding an asterisk before a pointer that has been declared (x = *p + 1) that means DEREFERENCING. There's a video on this topic and I know it can be confusing: code-vault.net/lesson/cw3spqag9u:1603733522844

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

    What Compiler are you using?

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

      In this video it's MSVC but I usually use gcc nowadays

  • @PhucNguyen-lb5rv
    @PhucNguyen-lb5rv Рік тому

    thanks for your lesson

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

    Can u make a video on linked list with single and double pointers

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

      There's a whole course about Linked lists, I use and explain pointers and double pointers in there: code-vault.net/course/z1ry7bakhs:1603732279805

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

    reallyyy well done!! i understood it

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

    int main(int argc, char *argv[]) _versus_ int main(int argc, char **argv)

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

      It's more or less the same thing. I just like using char* argv[] because it signifies that it is an array of strings in C, not just a pointer to something

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

      @@CodeVault ..that was my point, amigo! It is the most common occurrence of this and a good example. You are correct in representing this as you do _as it makes things much clearer_ to the new C programmer.

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

    I dropped out after one minute. Why do you use a **pointer as the function argument?

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

      What's the issue with that?

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

      “Why use double pointer” is at 5 mins.
      First 5 mins are “what is a double pointer”.
      All good.

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

    u tried well bro

  • @VahidNesro
    @VahidNesro 4 роки тому

    You're awesome man

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

    Awesome!

  • @T-She-Go
    @T-She-Go 3 роки тому

    ❤️

  • @zaabimahdi
    @zaabimahdi 4 роки тому +1

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

    4:34

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