Lakhs of college fees wasted...this free of cost lectures taught everything way more simply than any other teachers or institutes...Absolutely Amazing teaching skills and proper knowledge about the topic could result in such output
@md_abdulrahman Жыл бұрын
True
@Daughter_of_farmer16 Жыл бұрын
Exactly 😊
@p.srinivasulu262 Жыл бұрын
True
@manofsteel6173 Жыл бұрын
Yess😢
@sakshiverma203 Жыл бұрын
Totally agree 👍
@l.lawliet46362 жыл бұрын
Float x,y; Int a, *ptr; ptr = &x ( not possible because x = float ) ptr = &a ( possible as a is also int and ptr is also int )
@ankulgesarvesh182 жыл бұрын
but buddy float datatype can accept both int and float values
@l.lawliet46362 жыл бұрын
@@ankulgesarvesh18 that would be typecasting but in pointer... It's different
@tsmxgaming31262 жыл бұрын
bro float x,y; is wrong because we want to initalize it with float*x,y
@ankulgesarvesh182 жыл бұрын
@@l.lawliet4636 ohoo okay
@miraclin11 Жыл бұрын
@@tsmxgaming3126 she is declaring a variable, not a pointer in the first line
@coltenpulis66792 жыл бұрын
ive watched tens of videos on pointers, and hundreds of articles on pointers, but this is the first time that i have the FULL scope of pointers. thank you so much
@praveensamuel80833 жыл бұрын
here x variable is a float data type, and pointer is a int variable so in that... ptr=&x; //Error ptr=&a; //correct tq madam lots of love from Telangana state 💙
@shoppingpoint5962 жыл бұрын
can we assign the same to both if the data type is same i mean one pointer to the address of two variables
@mushua60602 жыл бұрын
@@shoppingpoint596 Add One More Pointer Variable Like Int *q;
@madhavan.12092 жыл бұрын
@@mushua6060 not int . its must be a float *q because x varible is a float datatype
@nasimkazi-hj8hiАй бұрын
Fghhhv
@angelevergreen9992 жыл бұрын
I have followed all of your lectures up to now and i'm geniunly excited to start this new topic. This can only means your teaching method is amazing mam
@pavanyegireddy6957 Жыл бұрын
Mam so many students are following jenny lectures. If any one start your videos they can't skip middle of your play list they must watch till end because you are catching students mindset and also you know how to teach a student clearly. I am very thankful to you and i am very lucky to see your lectures
@apudas7 Жыл бұрын
Please don't dislike mam's videos. She really works hard for us......
@devalsrivastava37932 жыл бұрын
Thank you so much mam you explain each and every concept in detail. I can't afford high fees of coachings. So thank you for giving this C programming basic to advance content for free. 🙏
@swetachaudhary92202 жыл бұрын
Thank you so much mam for teaching us c language at zero cost. It's awesome level teaching. Can't describe gratitude in words but thank you so so much from very deep of my heart...😊😘❤
@yashyash11812 жыл бұрын
Jenny N Harry are Lob😍😝
@Nilsen111 Жыл бұрын
@@yashyash1181lob means ?
@yashyash118111 ай бұрын
@@Nilsen111 it's means love, my feelings to express gratitude to them
@usamatariq42223 жыл бұрын
JENNY YOU ARE A LIFE SAVER...IM PAKISTANI RESIDING IN ITALY FOR COMPUTER ENGINEERING AND YOUR LECTURES MADE ME THROUGH THIS TOUGH TIME. LOTS OF THANKYOU
@sribasmaji33302 жыл бұрын
Seriously mam, first of all i searched pointer in c .so then saw 2 video before this . understood but entire not.whenever i clicked your video seriously my concept about pointer is now 100% clear. already subscribed your channel. salute your teaching quality. thank you .
@vaibhavsinhbihola13 жыл бұрын
float X,y; int a,*ptr; ptr = &a; This are correct And wrong is ptr = &x bcz you can't assign address of floating variable to integer pointer
@djrky37312 жыл бұрын
Is ptr=&a correct Or *ptr=&a should correct
@chandana37992 жыл бұрын
Mam.notes siguttha mam
@chandana37992 жыл бұрын
Notes Madi kalsi mam
@Rupank_Sahu Жыл бұрын
17:00 Ptr=&x is incorrect whereas ptr=&a is correct because a is int type and pointer also of same datatype but as we can see x is of float datatype but pointer is still a int datatype hence a is correct but not in case of x 👍🏼👍🏼
@ShekhAbrar8226 ай бұрын
Understood easily because of your clear and detailed explanation U r much Better than our college faculties for whom we pay lakhs of fees
@ramgupta45352 жыл бұрын
Conclusion of this Video 'Jis Datatype ka Pointer usi datatype ko saajhe, duja kare to thenga 👍 baaje' Thankyou Ma'am 🙏🙏
@maryannemuthoni53889 ай бұрын
float x, y; int a, *ptr; ptr = &x; ptr = &a For the assignment of address of x to ptr it does not work since x is a float type but ptr stores an int type. For address of a to ptr it works since a is an int and ptr stores address of an int. If the address of a is for example 1000, the value of ptr is 1000.
@unique_6586 ай бұрын
your way of teaching is simple and good .
@siddarthm30192 жыл бұрын
Tq mam for explaining in easy way love from tamilnadu❣️
@dimathperera50479 ай бұрын
Dear Madam, I appreciate you. 🤩
@chidiebereemereuwa9306 Жыл бұрын
Thanks Jenny!! God Bless you for me. These videos has really been helpful to me.
@himanshu-x8s6b10 күн бұрын
so deeply lecture i watched 1st time
@tharinduhasarangarubasinsi77147 ай бұрын
Because of this Lecturer i passed my algorithms and data structure exam , good luck
@Computer99118 ай бұрын
Thanks ma'am for your good video 📸 towards this pointers topic
@DarshanKumarTV-ur8tw Жыл бұрын
am paying money to learn c programming outside live clases then also am not satisfying in the class thats why am came for youtube study am refering jenny madem vedios now fully satisfying in c with zero cost tq so much mam🤩🤗☺
@shrutichauhan49352 жыл бұрын
Thanku mam to teach each and every concept in details .Your teaching level is so awesome 🥰🥰
@ApplyIT20212 жыл бұрын
Pointer is very useful. It is around two operators: memory address (&) and memory access (*)
@saifullahsiddiquei2851 Жыл бұрын
Please make videos on c++ language your teaching experience is very good
@abdulrahimjalloh363 Жыл бұрын
You are the best teacher for programming in the whole world. Thanks for your effort and free gift.
@zahidkarim74402 жыл бұрын
Thanks madam beautiful explanation I like your teaching style
@nishantpandey642110 ай бұрын
mam float x will be incorrect bcz pointer will access only those values which is integer type and thank u mam for this amazing vdo
@Shawaz113 жыл бұрын
Jenny man you are the best mentor and you did this topic very easly and good explan. 🤗🤗🤗
@sandeepsandra68802 жыл бұрын
I Just cant listen your lecture by looking into your eyes 👀 👀 😍😍😍
@Rdrudra073 жыл бұрын
The information we are getting at zero cost is having more value than paying 🙃....... ❤ ...... Thanks a lot mam...... for such great effort ❤💙💜
@Manan1882 жыл бұрын
i am paying 90,000 rupees at coaching still have to watch this
@codeishard31822 жыл бұрын
@@Manan188per year or month? bro, do you know any good online coaching which covers details of CS 1st semester to the last? I mean where I will be taught discrete math, linear algebra, etc. I am from Bangladesh recently admitted into a university.
@Manan1882 жыл бұрын
@@codeishard3182 per year no coaching is good youtube is best
@codeishard31822 жыл бұрын
@@Manan188 can you suggest a playlist for discrete math? I like Indian tutorials whether it's Hindi or Indian English...
@suvashreepriyadarshinibisw8017 Жыл бұрын
How clearly mam you can described I see many of KZbin channel but no one can explain like this
@abdullahkhan-rp1ze Жыл бұрын
Thanks a lot , a student is taking ur lectures from Pakistan....
@tonysofla2 жыл бұрын
C is supposed to be ab abstract layer for different cpu hardware. that is like why you can't use Carry for example. But what all cpu/mcu have is opcode for indirect addressing. That is what C pointers let you access, so just think that all struct data are Tetris blocks that repeats at some offsets and intervals, the C-pointer is to point this part of memory as it has already been pre-allocated at compile. So, it's like a gray area of what C allows: direct memory access. And if you do want it, can be done with type casting a pointer: *(INT*)0x1000
@herohera3497 Жыл бұрын
smart
@bhabanisankarbehera43033 жыл бұрын
Tq..mam your teaching style is very good and easy also I was appreciated that video
@Svr_edits2 жыл бұрын
I am diploma student I get an idea about pointers thank u mam
@bestsongs2482 жыл бұрын
ye kitni awesome hai yarr💙💙💙
@easymalayali43103 жыл бұрын
Big fan of your classes maam ❤️❤️❤️❤️
@tarunreddy88843 жыл бұрын
Hi mam i am very big fan of ur lectures and i am very happy to see u again
@macdaveedgolden7890 Жыл бұрын
I have searched through the nuke and cranny of this space.. I can boastfully say that your tutorials are magical.. thanks ma’am ❤
@BhanuprakshSasapu10 ай бұрын
Mam suop explanation tqq mam for this type of explanation ❤️🔥❤️🔥
@samirakhalil7223Ай бұрын
Tack!
@humayonnasir4797 Жыл бұрын
Love you ma'am, Beauty with brain
@kwameanati Жыл бұрын
*ptr = &x is wrong because of difference in data type. *ptr = &a is correct because of same data type which is int.
@bawaabdulsilas3681 Жыл бұрын
float = x, y; - is a valid declaration in C. int a, *ptr; - Is also a valid declaration in C. ptr = &x - Not valid, because x and ptr are not the same data type (i.e while x was declared using "float" data type, ptr was declared using "int" data type as such, ptr cannot point to x). ptr = &a - This is valid because both were declared using the same data type which is int. So by implication ptr should be able to store the address of a. So, at last ptr will contain the address of a, say... 2001.
@_MdJihadulAbedin3 жыл бұрын
Mam, the way of your teaching just awesome. Lots of love and respect for you Mam ❤️
@coder41163 жыл бұрын
Thanks mam it helps me a lot for learning c language
@shraddhapawar56743 жыл бұрын
Hello ma'am, lot's of love and happiness to you, I believe that greatest philanthropist in this world is teacher and you 💯 deserve that.
@yagalakshmi3912 Жыл бұрын
Thanks mam ❤️,lots of love from Andhra Pradesh 🔥
@suryakantpatel77933 жыл бұрын
very useful ma'am aap ka lecture
@AnandHondappanavar Жыл бұрын
Your teaching skills are superb madam 😊
@prateekverma56962 жыл бұрын
best teacher ever . thankyou mam
@blobestanoh2 жыл бұрын
You explin the concepts very well madam
@arunkhilari7011 Жыл бұрын
Thank you sister for the beautiful explanation of pointer.
@MadhuKarampudi Жыл бұрын
float x,y; int a,*ptr; ptr=&a;(This is Correct) ptr=&x;(This is wrong) Because pointer is addressing the variable which is in integer data type
@AkashDeep-md6jd5 ай бұрын
Think of it is as a ROAD ADDRESS SIGNS: [ it points at a certain direction which leads to the ADDRESS of that house which it contains ON ITS PLATE ]
@lifemalayalamyoutube71924 ай бұрын
Thank you so much dear sister❤️you are an angel send by Ma Saraswathy❤️🙏🏾
@aarn39322 жыл бұрын
Thank you so much.i really like you explanation mam. In pointer many teacher used *ptr as exo. which make it confusing it as syntax pointer,you really solved my doubt.ty
@bogillivenugopalkrishna9864 Жыл бұрын
ptr=&a is possible because a is int type and x is float type
@smohammedmosin51962 жыл бұрын
mam i thank you from my bottom of my heart from you r class i have understood bit level to byte level :)
@classicmantv9263 Жыл бұрын
The right channel to subscribe to
@pravinbirajdar35553 жыл бұрын
Once again thnx mam see in this pointer sessoin so i come to increase incourage to I feel
@raidon5553 Жыл бұрын
Ladies teachers are like mother becaz they teach student like their children..😊😊
@AkashDixitShorts2 жыл бұрын
Ptr can't contain address of x as it is float while ptr can store address of that variable only whose data type is int 17:15
@arshuarshad155111 ай бұрын
You are my jaan mam means coding ki jaan nobody can teach like you mam all the colleges and university Phd teachers shoud see you and take lessons from you
@theblackelephant2 жыл бұрын
Hey Jenny thanks a lot for great videos. Programmers from South Sudan love you.😍🥰😍🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰😃😃😃
@enishettysharanya4332 жыл бұрын
Mam ur teaching is too gud I really love but I want to give one feedback pls smile and teach so that we will get lot of interest and we get what u teach very easily thankyou
@nanilkumar5625 Жыл бұрын
Tnq so much for clear explanation with a single point👏
@dazaisan6697 Жыл бұрын
100 times better than my own teacher at college
@amitaryan49511 ай бұрын
#include int main() { float x, y; int a, *intPtr; float *floatPtr; floatPtr = &x; printf("%p", floatPtr); intPtr = &a; printf("%p", intPtr); return 0; } However, there is a type mismatch in the pointer assignments. The pointer ptr is declared as an int pointer (int *ptr;), but it is assigned the address of a float variable (x) and then the address of an int variable (a). This can lead to unexpected behavior because the pointer type should match the type of the variable whose address it stores.
@Aadi_di_tory_ Жыл бұрын
Glow of your teaching skills also reflects glow on your chiks🌟💯
@vimala78303 жыл бұрын
Tq so much for your crystal clear explanation mam... Ptr = &a is right other one is worng...
@ReshmaTellismileАй бұрын
4 one is correct
@AnuragSingh-lu7on2 жыл бұрын
Thankyou so much ma'am, now I realize you are best then my college teachers ❤❤, you explained very easily.. And now my concepts are clear. Thanks a lot again ma'am ❤❤❤
@atulkumar16352 жыл бұрын
I love you MAM , I want to learn C language from you in my whole life
@freefireclub4252 жыл бұрын
Love you teaching mam
@Quizwhiz-official Жыл бұрын
Seriously it's very helpful thanks ❤
@mohitbali80832 жыл бұрын
Thanku so much Ma'am.....i watch and follow your lectures to give my lecture in my class...... thanku and keep going .Mahadev bless u.
@SHOAIBAKHTAR-w9hАй бұрын
THE ANS TO THE QUESTION WILL BE, POINTER WIL STORE ADRESS OF VARIABLE OF INT DATA TYPE SO[ptr=&x] will not be printed because x is a float type variable . and the ptr=&a is correct because a is also int type.ptr will store address of a ,and a will have garbage value
@MAROUANEMAROUANE-zb9gg11 ай бұрын
i love this lady thank you so much
@khushalrane6143 Жыл бұрын
You are amazing mam ! your lesson is more helpful for me
@ankitthakur43713 жыл бұрын
Video start at 2:53
@anilchaudhary7969 Жыл бұрын
Ptr=&x // wrong Ptr=&a // right Because the data type declare of ptr is int
@sanskarkurude2 жыл бұрын
When I was a kid my sister also explains me like this thanks didi 😀
@sarveswaranbabu7767 Жыл бұрын
boomer
@dgs26592 жыл бұрын
1st line is wrong ,2nd line is correct......thank you mam to ease this concept for us.🙏🙏
@BanothSruthi-t5s8 күн бұрын
Float x,y Int a,*ptr is possible Prtr =&x is not possible because x is float Ptr=&a
@computer__sci Жыл бұрын
Pointer and recursion are very easy if you study from good teacher
@nandishds9596 Жыл бұрын
Jenny lecture >>>>>>>>>>>all college faculties ☠️
@RajlaxmiWagh Жыл бұрын
float x,y; int a, *ptr; ptr=&x is wrong because ptr is expecting variable with int datatype ptr=&a is correct
@mudassarsiddiqui41122 жыл бұрын
Jenny madam 🙏🙏🙏 Such a good explanation.. You are doing an excellent job 👍👍👍
@BrijeshYadav-ic1bi Жыл бұрын
Hm 😂
@rosonerri-faithful3 жыл бұрын
float x,y; int a,*ptr; ptr=&x; ptr=&a; ptr=&x gives error since x is of float type and pointer is of int type ptr=&a is correct since a is of int type and pointer is of int type too
@yashswichitkara8 ай бұрын
float x,y int a*ptr; ptr = &x;( wrong beacuse pointer p is contating address of integer data type) ptr = &a; (correct beacuse pointer ptr is contating address of integer data type)
@rakurame69903 жыл бұрын
int a, *ptr; ptr = &a; These are the correct ones. 1st and 3rd are wrong. Since x is defined as a floating type variable whereas ptr is defined as int.
@shashanksp80202 жыл бұрын
only 3rd ine is wrong
@naturespeaks36622 жыл бұрын
kzbin.info/door/SKYbfIoFy85vxaLEvjUq8Q
@pranavsingh42142 жыл бұрын
@@shashanksp8020 yes
@ammanrain55662 жыл бұрын
3 is wrong
@DPCEHYMDADNANANSARI8 ай бұрын
Kitni awesome hai ywr💜
@Maths.Com_3 жыл бұрын
Mam Please make a Playlist For Gate 2022 CSE Topics.Its a request to you mam 🙏.
@shinyrao27862 жыл бұрын
Pointer is of the type int. That mean it can only store the address of the variable of type int. So ptr= &a; is correct.it cannot store address of the variable of type float.So ptr=&x; Is wrong becoz x Is float type..