Pointers in C Programming | Pointer to Function | C Language Tutorial
Вставка
- Опубліковано 27 гру 2024
- Pointers in C Programming
Pointer to Function
C Language Tutorial Videos
** For Online Training Registration: goo.gl/r6kJbB ? Call: +91-8179191999
? Visit Our Website for Classroom Training:
nareshit.in/c-...
? For Online Training:
nareshit.com/c...
--------------------------
? About NareshIT:
"Naresh IT is having 16+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA,Hyderabad, Chennai and Vijayawada,Bangalore India which provides online training across all the locations
--------------------------
? Our Online Training Features:
1.Training with Real-Time Experts
2.Industry Specific Scenario’s
3.Flexible Timings
4.Soft Copy of Material
5. Share Videos of each and every session.
--------------------------
Please write back to us at us.training@nareshit.com/online@nareshit.com or Call us at USA:
+1404-232-9879 or India: +918179191999
* Check The Below Links*
? For Course Reg: goo.gl/r6kJbB
? Subscribe to Our Channel: goo.gl/q9ozyG
? Circle us on G+: plus.google.co...
? Like us on Facebook: / nareshit
? Follow us on Twitter: / nareshitech
? Follow us on Linkedin:
/ naresh-i-technologies
? Follow us on Instagram: / nareshitech
I guess Cameraman who is taking this Video is very lucky that even he might have learnt this C programming easily. Hats off to the wonderful teaching . I wish I could be the Cameraman over there....
How can a tripod stand code?
Matlab kuch bhi 😂😂😂
If I didn't understand any topic the only person from whom I can understand is Srinivas sir 😍...
The way sir teaches is just awesome
his calmness is the best part in all the videos
🔥 BEST TEACHER OF COMPUTER SCIENCE 🔥
No mincing of words, no repetition of avoidable narration, no exaggerated expressions. Simply superb.
You're language is too clear for understanding levels of my mind😊
great explanation of pointer-function relationship.Greetings from TURKEY(BTW i am an EEE student one of the best University in Turkey and you are far better than my teacher sir.)
i m not from Turkey , but i definitely agree with you ! thanks !
Which university
Welcome here
Appreciate it🤪♥️♥️💯🤞
Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
The way you explain any topic is simply amazing Sir🙏
greetings from brazil!!!
amazing teacher !!! thanks and cheers !!!
sur vary handsum sur, looking vary bootiful
It would be great if in last 5 sec you show the compiled result for the program or algorithm written
sir your explanation was so good that i was able to understand it without any hesitation ,so we expect more videos from u of this kind
I am from bangladesh....sir you are too good.........but i thing if you use a pc also it will be grat.
Great way of expressing the concept Sir 💜
There is No way to Express "How Wonderful your Teaching Is" .....
very nice teaching sar
Best teacher
Love from Maharashtra.. Understood pointer very easily... Thank you so much sir...
Wow , absolutely fantastic. Thank you sensei !!
Sir now we are taking only two arguments in multiply function like only intx and inty then pointer PTR can access these function
sir! you told about dangling pointer...in this vedio and m waiting for dangling pointer session.
it's a request you to please upload dangling pointer vedio.
Nice explanation
Thank you so much for uploading this videos to all of us.
clear and crisp explaination
Your classes were really amazing sir... your teaching skills were really too good
Thanks sir
Really this is too useful for enhancing concept
thank you sir ❤️
I really enjoyed the session sir. Thank you.
Tnx sir
I'm thanking you sir ....
from bottom of my heart...
you are such a great teacher...
plzzz upload dangling pointer video
great explanation sir .this vedio is very helpful .tq sir
Thank you very much!
Great work.
Sir, please upload a video lecture on dangling pointers.
super explanation sir
man sir teaches the best
Excellent sir ,plz make some videos based tricks and techniques that can be taken while writing code contest or writing code in c programming
youre miles better than my college teacher :)
excellent explanation sir.Always keep uploading more vedios ..all the best sir
Excelent.
Greetings from Mexico.
Best teacher. Thanku sir
Very simple and best explanation. 🙏🏻
goat of teaching
Hi , can i use same pointer for multiple functions with two variables. like subtraction and multiplication with just two variables . or do i need to create new pointer to both of them?
S no need
Beautiful explaination dear .
Sir your all videos is amazing...its help me a lot ..thanks a lot
Where is videos of dangling function can you plz provide a link for that
thank you nares bhai
I want to ask doubt sir ..for example I have taken 2 functions like add and mult both takes same parameter then for which the pointer will point to ? I mean can it point to both functions if they have same parameters and return type?
May be create a new pointer function multiplication
Yes it will point to both the independent function addition function as well as multiplication function no need to define any new prototype for that because you just need to allocate the memory address of your multiplication frame into the ptr then the ptr start pointing towards the multiplication function by that time it will stop pointing to addition function and also if we are defined dangling Pointer then it continues pointing to both the function even after the function address is unallocated for the program
Sir, excuse me, there is an error @10:58. It must be
r3=(*ptr)(30,50)
?
Sir very good explanation, please upload video on dangling pointer I am super excited to learn it only from you.
Thank you... It is a new concept to me..
Sir where is your video on dangling Pointer plz provide the video over dangling Pointer concept I can't see in your playlist
Thank you sir
Excellent explanation
best explaination
Too Great explanation sir
Great Anna lovely
very good explanation
Sir thanku so much....u r awsm
Sir your videos are interesting as well as informative.
Sir can u make videos on keywords such as volatile and packed.and videos on returning a pointer
Excellent sir
Its the best one... Thank u sir fr the explanation
Superb explanation sir
Thanks sir Clear to the cons concept
Sir r3=ptr(30, 50) if we want value means we use *ptr(30, 50)
Same doubt
No *ptr(30,40) means ptr should point some location and the result r3 will go and store there we already specify the address of addition frame up there
@@ankitjha3878 ??
thank you ur videos are very use full
Teaching line is so good sir...
Thankyou for the video
Excellent
Love you sir
Thanks🙏🙇 sir
Sir, you know what you are hero
Explaination is very good... It's very easy to understand....
But, sir , I don't understand why we are using the pointer to function....
Noice😂
Sir please make vedio about different pointers and also about difference between compile time and runtime errors
sir your explanation is good but please add some more videos on pointers and two-d array
thnk u sir
sir,
above you had written that r3= ptr (30,50),
as "ptr" is a pointer variable ,is that not needed to place '*' before ptr......i mean to point the address of function '*' required na......
Hi..yes..you are right ...*ptr is a pointer variable which means ptr is holding the address of some value which is why he has mentioned it using ptr=&add and then r3=ptr(30,50)..hope you find my point valid
@@manaswinisrilalitha9026 I think *ptr contains the value of some specified address....ptr only contains address of the value....is that right?
sir, you said about DANGLING POINTER ,please upload that video
Thank you sir
tq sir
Where is dangling pointer video? I can't found please help me. Give me video link....
next video (Dongling ponter) is not available in playlist, can you guys please give the link for next episode
Fantastic👍👍
Hi sir... can you please explain about callback function in c clearly with example
Thank You
Sir aren't u missing to write function prototype above main.pleasse explain
very very clear
just awsome
u should put next video link in description ..how shall we find tht
Change the code with r3=(*ptr)(30,50)
exactly because i confused this representation r3=ptr(30,50);
Nice sir
good videos thank you sir
Nyc
sir, if we declare three prototypes in main function.
we can use two for add fuctn and three for mul functn. it is possible?
declaration of pointer to function Syntax must be with in the main function sir
sir please upload dangling pointer videos...
sir the r2 value u ve wrote.. isn't it should be 24?
i really think that u should open your own channel and upload videos..it will be very useful for us
Make video on 2D arrays
Sir vll uh say program for ,to find whether the given input square root number or NOT function with no arguments but with return value..
Thank you sir
pointer programs ptractice for beginers example and qustion and solving problems sir please sir
what if we had only two arguments within the multiply?
will the pointer be pointing to multiply too?
doesnt make sense
tqs