Possibly the best explanation on pointer I have come across. Once I thought I will never understand pointer. But your video has made things fully clear.
Always sir you are an angel for me, I don't have one with me to clear my doubts, but from starting you are helping me 😊😊😊❤️❤️❤️, thank you Singla sir ♥️
good explanation. 5:33 pe ap ne kaha ap ko y ka adress dekhan he or sath hi ap ne y ki value likh di. ye khena chahiye tha k y ki value print ho go. Thanks
#include #include int main(){ int x=10; int *p=&x; int *q; q = &x; printf("p:%p , q:%p", p,q); return 0; } ------ p and q both are pointers to an int data type and holds address of x, so both p and q will print same value which is address of x.
sir if %u is used for adressing but why we are taking %u,y=1000 insted of 2000 which is adress of y, sir plz do clear this one insted of taking %u can we take % ?
Sir please make a video on function types ( no return no argument etc )and their usage. Would appreciate if you explain with example programs. What tells after looking at the question that this function type will be used.
Pointers par ek powerfull doubt hai mujhe. Bahut logo se poocha koi bhi explain nahi kar paya. Yamha koi programmer hai jo doubt clear kar sake? To me vo doubt poochu????
Kal mari Semester ke final exam ahi thank you sir simple words mai explain karna ka lea
Possibly the best explanation on pointer I have come across. Once I thought I will never understand pointer. But your video has made things fully clear.
I am studying C language. But the pointer part was very confusing and difficult, so I had a hard time, but watching the video helped me a lot.
Always sir you are an angel for me, I don't have one with me to clear my doubts, but from starting you are helping me 😊😊😊❤️❤️❤️, thank you Singla sir ♥️
ತುಂಬ ತುಂಬ ಧನ್ಯವಾದಗಳು ಸರ್🙏🙂
O m g i was struggling to understand pointer but he made it so easy to understand , thank you sir i wish you could teach us whole language 🙏
After wasting 1 hour, this video helped me to understand the topic pointer.
Thank you so much sir ji..
Pointers is very helpful in game programming for referencing enemy to player position
You made it easy to understand 🙌
Best explanation of the concept in such a small time.
what a cleareness sir
nice explain
fully clear😊
thank u sir
As always, great explanation. Sir your videos are on the next level !!!!!
Best youtuber in c programming
Sir ur explanation is very easy to understand, I am not able to understand it in my lecture then I come here to understand it deaply.
Thanx💛sir
Sir aap sabse accha logic samjate ho
Sir I fully understand C programming language from you. aftet this I want to learn objects oriented programming in C++ can you recommend best channel
Thank you so much for clarity studied from many platforms here I got clearity in short and simple method thank you so much
One of the best video of pointer💥💯 thank you sir🙏☺
Tq so much🙏🙏❤️❤️
Very grateful to u🙏🙏❤️❤️
Sir you doing very great job...
Sir please ap """data structures and algorithms"" ke video bna dijye....bahut jyda important hai
good explanation. 5:33 pe ap ne kaha ap ko y ka adress dekhan he or sath hi ap ne y ki value likh di. ye khena chahiye tha k y ki value print ho go. Thanks
Respect for u 📈📈📈📈
After 50 videos, I got into the correct place.
Thank you sir 😃 for clear my doubt you are best teacher
Sir, one mistake.
int *y = &x; ( error )
&x is address but *y is not, it is value.
So the address of x is not assigned with *y.
#include
#include
int main(){
int x=10;
int *p=&x;
int *q;
q = &x;
printf("p:%p , q:%p", p,q);
return 0;
}
------
p and q both are pointers to an int data type and holds address of x, so both p and q will print same value which is address of x.
This video is helpful for me thank you sir and I have little doubt that can we use %p instead of %u in pointers
The Best explaiation
ur explanation was stunning brooo
Sir i have a question yeh last me *y me 1000 print nai hoga kyunk pointer x k address ko point kr rha hai na k value ko?
Your Explanation is next level sir....Moj krdi😎
Pov legends watching the video 30 minutes before exam
Yeah 😅
Legend ❌
Ultra legends ✅
Nice explanation sir👍
One full video on recursion topic in C language please make sir 🙏 humble request
Thanks a lot sir for making this video.
Sir...I m diploma student .. This video is very usefull to me and this is very easily understand ❤
All the best
Superb sir ek br me hi smjh aa gya😊
Thanks a lot sir ji 😊
Amazing content delivered ❤
Wow sir 🎉❤
Pointer is easiest topic if you study from good teacher .
The best explanation ever
Many many thanks 👍👍
Great explanation sir👍🫡
Hloo sir
Bhaut din se wait kr rhe h iska😅 finally aa gya
Thank u for this awesome😊
Sir %u to address ke liye use kerte hai or apne 3rd question me y ki value likhi hai ,, ager y ki value aati to %u ki jgeh %d use kerte na
Best example ❤
Thnx Sir
What is difference between Pointer and advanced pointer
Amazing sir
Bahut achha padaya thanks 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏 I love you 😍😍😍😍😍😍😍
Thank you sir 🙏
❤
Thank you sir so much❤😊🎉
Great
1 Night before exam.😰.this channel is heaven.
❣❣❣
Awesome sir i need this type of video thanks sir
..... Best ever
Crystal clear sir🙏🙏🙏
Bro u are super se bhi uppar👌
U r great
Very very helpful sir. Thank you
Thanks a lot sir. You one of best teacher ☺️
shouldn't d syntax b like y = &x instead of * y = &x (according to let us c)
good
Thank you sir
Superb .... highly recommended 👌
Nice sir, cleared concept of pointers
Love from Kolkata ❤
Sir ....u r 🎉
thank you
Thanks sir(today is my exam)
Best way to spend time pass!! 🤗
Nice improvement with home projector and professional look, bhaii!! 💫
Thank you so much sir 😊👍👍
Sir printf ("%u", y) me%d to bhi ho sakta tha kya
Thankyou sir ji ver helpfull video
Thanks Sir
Thank you sir!! You really explain well😊
well done sir g👌👍👍👍👍👍
Plzz reply Dana Sir
If & show number of address
But why scanf function show the number of value
Because in which also we use & sign
Plzzz reply me ?
More than 60% , we need to understand it 100% ,
sir if %u is used for adressing but why we are taking %u,y=1000 insted of 2000 which is adress of y, sir plz do clear this one insted of taking %u can we take % ?
Sir start DSA course much needed
Thanks 😊
Thank you sir ❤
thanks a lot sir 🙌
Sir please make a video on function types ( no return no argument etc )and their usage.
Would appreciate if you explain with example programs.
What tells after looking at the question that this function type will be used.
Sir, what is your qualifications?
😊 Sir I like your way to teach 🤩😍
Doubt clear🔥
Nyc video sir
After coming from clg lecture, i was so frustrated to this topic .
But now , aapne boht ache se samjhaya
Thank you so much 😄
Pointers par ek powerfull doubt hai mujhe. Bahut logo se poocha koi bhi explain nahi kar paya. Yamha koi programmer hai jo doubt clear kar sake? To me vo doubt poochu????
Very nice
Appreciated😊🙏❤
Thnx chachu🥰
What if there is triple star(***) for a pointer
How it works
Gjb sir ji
Sir aap tutorial 1,2 es trah no.dijiye
Thanku sir ❤️
Thankyou soo much sir
Nice ❤️🤗👍
Good
Nice
thankew sir
Sir c++ mai kasy kry gym ap ny C mai krwaya hy plzz tell me plzzzzz