What are double pointers in C?

Поделиться
HTML-код
  • Опубликовано: 14 апр 2020
  • Check out our Discord server: / discord

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

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

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

  • @lorisp186
    @lorisp186 2 года назад +21

    You're the best I found on RUclips 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

  • @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. :)

  • @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.

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

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

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

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

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

    Bad example. Cause, in the first case you'd use a single pointer. ` void display(char *output) {}` and call it `display(str);` That's all I focused on. The extra fluff. BUT, I get what you were trying to tell people, by using & and **. So, everything you said ... correct.

  • @Exertet
    @Exertet 4 года назад +3

    Great explanation and demonstration, thanks!

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

    Your explanations are so good man!

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

    Great Job Code Vault. Thanks for the valuable info.

  • @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: ruclips.net/video/uBZHMkpsTfg/видео.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)

  • @konstantinrebrov675
    @konstantinrebrov675 3 года назад

    Thank you sir for this series.

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

    great video. I practiced with your example. I learned alot. 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... ?

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

    You have an immense clarity 👍

  • @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

  • @qwqqq2416
    @qwqqq2416 3 года назад +1

    Hello, thank you for your great explanation.

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

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

  • @aldairacosta4393
    @aldairacosta4393 10 месяцев назад

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

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

    reallyyy well done!! i understood it

  • @PhucNguyen-lb5rv
    @PhucNguyen-lb5rv 11 месяцев назад

    thanks for your lesson

  • @caffeinatedinsanity2324
    @caffeinatedinsanity2324 3 года назад +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  3 года назад

      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.

  • @VahidNesro
    @VahidNesro 3 года назад

    You're awesome man

  • @joaco.
    @joaco. Год назад

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

  • @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.

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

    Awesome!

  • @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.

  • @mdjunetali
    @mdjunetali 3 года назад

    What Compiler are you using?

    • @CodeVault
      @CodeVault  3 года назад +1

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

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

    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?

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

      I will look into it

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

      @@CodeVault Thank You sir for this reply😀

  • @bartlomiejodachowski
    @bartlomiejodachowski 2 года назад +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  2 года назад +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 2 года назад

      ​@@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";'

  • @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

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

    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

      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

  • @T-She-Go
    @T-She-Go 3 года назад

    ❤️

  • @zaabimahdi
    @zaabimahdi 4 года назад +1

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

    u tried well bro

  • @sanjeevanichaudhari4375
    @sanjeevanichaudhari4375 3 года назад

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

    4:34

  • @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 Год назад

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

  • @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.