See complete series on pointers here
Pointers is one concept that does not go down well with beginners in C/C++. In this tutorial, we have tried to demystify the concept of pointers.
Prerequisite: You should know how to write a basic C program to add two numbers.
Check our next lesson here:
For practice problems and more, visit:
Like us on Facebook:
Follow us on twitter:
Nguồn:https://wijstaanvooronzegrondrechten.org/
Pointers are like memory inception.
Don't talk badly about your teachers, I'm sure they gave you the concept and in this video you only figured out details
From my beginning of programming career i'm in love with you video now you have got 500k subscriber the rapid amount of viewer shows the skills presenting technique & the quality of your Channel keep it up Dear.
Thank for the closed captions for those who aren't used to indian accents
Thank you so much. You explain pointer in 10 mins better than combining my professor using 30 min and TA using 20 mins.
That’s sooooooooo clear
You make this whole a lot easier for us , cool teacher
this is the best series on pointers no doubt but my eyes burn from white screen lol
Kuch nahi samaj aa a raha hai
your god
The most basic of the beginning : what is the MOTIVATION – WHY would one want to use pointers in the first place ?
Thanks a lot bro, your Tutorials was very helpful for me
You have seriously done a great job explaining such an important concept, keep doing so and posting the important concepts.
You had told that int variable takes 4bytes of memory but normally int takes only 2 bytes……
So, I know understand pointers, but I don't see the use of them. What would you practically use them for? Why would you need to know the memory address of a variable? I'm a game programmer so I don't think I'd use this in my case.
it is very very need education continuous by there thank for her learn lecture
you == amazing
Amazing.
TIP: This author has a whole playlist – 17 videos – of C pointers on their channel. Just discovered it.
What a great, clear explanation! The practice examples really help.
I rarely comment , but I must say that I understood in 10 minutes what I didn't understand in one year. I have an exam tomorrow , you just saved my life THANK YOU so much sir 🙂
hi from india
int have 2 bytes right? that's how it is mentioned in class 11th sumita arora book?
Jigabyte
awesome
Tq
integer occupies only 2 bytes of memory
For anyone out there…if you have stumbled upon this series….then TUCK IN! Your understanding of pointer will be CRYSTAL clear.
thank you…very well explained…you helped me a lot!
blue void
lourd mgl
Bhai char allocate 2 byte of memory
Int takes 2 bytes ? I think so
This is what 'earning a sub means' Thank you so much!
#include<stdio.h>
int a,b;
void print(){
printf("%d %d",a,b);
}
int fun1()
{
int a,c;
a=0;
b=1;
c=2;
return c;
}
void fun2()
{
int b;
a=3;
b=4;
print();
}
int main()
{
a=fun1();
fun2();
}
sir, can you explain this output?
nice explanation of pointers…Thank you so much
you are my god
Can someone explain why you would want to use pointers?
This video is brilliant. Thanks from Australia.
Thank you for your explanation.😊
clears all concepts.. must watch
it was an excellent video ,thanks for making ,keep doing,
thank you
Thanks Sir, u made it so easy.
Sir, I know you aren't alive but wherever you are, you have all ours blessings ❤❤❤❤❤
Int is of 2 bytes