What are double pointers in C?

  Рет қаралды 42,197

CodeVault

CodeVault

4 жыл бұрын

Check out our Discord server: / discord

Пікірлер: 66
@zackakai5173
@zackakai5173 Жыл бұрын
Encountering double pointers for the first time be like: "This is getting out of hand. Now there are TWO of them."
@lorisp186
@lorisp186 2 жыл бұрын
You're the best I found on KZfaq 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 жыл бұрын
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 жыл бұрын
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 жыл бұрын
Omg thx so much! Ur explanations are terrific and truly explain the intuition behind these concepts! Thanks again!
@camygiuliani8758
@camygiuliani8758 2 жыл бұрын
I really like how you explain things! Well done and thanks :)
@Exertet
@Exertet 4 жыл бұрын
Great explanation and demonstration, thanks!
@sushanttodkar8294
@sushanttodkar8294 3 жыл бұрын
Great Job Code Vault. Thanks for the valuable info.
@madix0088
@madix0088 2 жыл бұрын
Your explanations are so good man!
@EchoENKO
@EchoENKO Жыл бұрын
great video. I practiced with your example. I learned alot. thanks!
@konstantinrebrov675
@konstantinrebrov675 3 жыл бұрын
Thank you sir for this series.
@tobeypeters
@tobeypeters 4 ай бұрын
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.
@qwqqq2416
@qwqqq2416 3 жыл бұрын
Hello, thank you for your great explanation.
@arrahul316
@arrahul316 Жыл бұрын
You have an immense clarity 👍
@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: kzfaq.info/get/bejne/q6iKe7Cc1dm4lps.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)
@Dacapoelcodaa
@Dacapoelcodaa 8 ай бұрын
reallyyy well done!! i understood it
@PhucNguyen-lb5rv
@PhucNguyen-lb5rv Жыл бұрын
thanks for your lesson
@gammyhorse
@gammyhorse 3 жыл бұрын
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 жыл бұрын
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 жыл бұрын
@@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... ?
@aksshatkhanna4315
@aksshatkhanna4315 2 жыл бұрын
Bro you are the best teacher ever. Please do consider a career in teaching. You'll be a hit.
@VahidNesro
@VahidNesro 3 жыл бұрын
You're awesome man
@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 жыл бұрын
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 жыл бұрын
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
@aldairacosta4393
@aldairacosta4393 10 ай бұрын
The pauses that this dude made between sentences reflects how difficult is understand the pointers in c language
@CosmJJ
@CosmJJ Жыл бұрын
Awesome!
@caffeinatedinsanity2324
@caffeinatedinsanity2324 3 жыл бұрын
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.
@joaco.
@joaco. Жыл бұрын
I understood by your video, double, triple, n pointers are just hierarchies used to modify lower "rank" pointers.
@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.
@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 Жыл бұрын
**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.
@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
@mdjunetali
@mdjunetali 3 жыл бұрын
What Compiler are you using?
@CodeVault
@CodeVault 3 жыл бұрын
In this video it's MSVC but I usually use gcc nowadays
@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 Жыл бұрын
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
@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😀
@techdyan8500
@techdyan8500 2 жыл бұрын
u tried well bro
@bartlomiejodachowski
@bartlomiejodachowski 2 жыл бұрын
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 жыл бұрын
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";'
@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 жыл бұрын
@sanjeevanichaudhari4375
@sanjeevanichaudhari4375 3 жыл бұрын
@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.
@blameItleaveit
@blameItleaveit 2 жыл бұрын
4:34
@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.
How to print in binary
18:35
CodeVault
Рет қаралды 16 М.
C pointers explained👉
8:04
Bro Code
Рет қаралды 149 М.
Русалка
01:00
История одного вокалиста
Рет қаралды 5 МЛН
🤔Какой Орган самый длинный ? #shorts
00:42
Master Pointers in C:  10X Your C Coding!
14:12
Dave's Garage
Рет қаралды 287 М.
you will never ask about pointers again after watching this video
8:03
Low Level Learning
Рет қаралды 2,1 МЛН
C++ Pointers to Pointers - Finally Understand Double Pointers
13:18
What are void pointers in C?
10:05
CodeVault
Рет қаралды 29 М.
Why are function pointers useful?
6:43
CodeVault
Рет қаралды 29 М.
why do void* pointers even exist?
8:17
Low Level Learning
Рет қаралды 335 М.
Difference between arrays and pointers in C
11:23
CodeVault
Рет қаралды 31 М.
C Arrays and Pointers to Pointers
35:20
Kris Jordan
Рет қаралды 17 М.
Call By Value & Call By Reference in C
8:34
Neso Academy
Рет қаралды 1,3 МЛН
you will never ask about pointer arithmetic after watching this video
8:01
Low Level Learning
Рет қаралды 234 М.
Русалка
01:00
История одного вокалиста
Рет қаралды 5 МЛН