C_71 Pointers in C - part 1| Introduction to pointers in C | C Programming Tutorials

  Рет қаралды 685,495

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 548
@ankan7193
@ankan7193 Жыл бұрын
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
@md_abdulrahman Жыл бұрын
True
@Daughter_of_farmer16
@Daughter_of_farmer16 Жыл бұрын
Exactly 😊
@p.srinivasulu262
@p.srinivasulu262 Жыл бұрын
True
@manofsteel6173
@manofsteel6173 Жыл бұрын
Yess😢
@sakshiverma203
@sakshiverma203 Жыл бұрын
Totally agree 👍
@l.lawliet4636
@l.lawliet4636 2 жыл бұрын
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 )
@ankulgesarvesh18
@ankulgesarvesh18 2 жыл бұрын
but buddy float datatype can accept both int and float values
@l.lawliet4636
@l.lawliet4636 2 жыл бұрын
@@ankulgesarvesh18 that would be typecasting but in pointer... It's different
@tsmxgaming3126
@tsmxgaming3126 2 жыл бұрын
bro float x,y; is wrong because we want to initalize it with float*x,y
@ankulgesarvesh18
@ankulgesarvesh18 2 жыл бұрын
@@l.lawliet4636 ohoo okay
@miraclin11
@miraclin11 Жыл бұрын
@@tsmxgaming3126 she is declaring a variable, not a pointer in the first line
@coltenpulis6679
@coltenpulis6679 2 жыл бұрын
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
@praveensamuel8083
@praveensamuel8083 3 жыл бұрын
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 💙
@shoppingpoint596
@shoppingpoint596 2 жыл бұрын
can we assign the same to both if the data type is same i mean one pointer to the address of two variables
@mushua6060
@mushua6060 2 жыл бұрын
@@shoppingpoint596 Add One More Pointer Variable Like Int *q;
@madhavan.1209
@madhavan.1209 2 жыл бұрын
@@mushua6060 not int . its must be a float *q because x varible is a float datatype
@nasimkazi-hj8hi
@nasimkazi-hj8hi Ай бұрын
Fghhhv
@angelevergreen999
@angelevergreen999 2 жыл бұрын
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
@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
@apudas7 Жыл бұрын
Please don't dislike mam's videos. She really works hard for us......
@devalsrivastava3793
@devalsrivastava3793 2 жыл бұрын
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. 🙏
@swetachaudhary9220
@swetachaudhary9220 2 жыл бұрын
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...😊😘❤
@yashyash1181
@yashyash1181 2 жыл бұрын
Jenny N Harry are Lob😍😝
@Nilsen111
@Nilsen111 Жыл бұрын
​@@yashyash1181lob means ?
@yashyash1181
@yashyash1181 11 ай бұрын
@@Nilsen111 it's means love, my feelings to express gratitude to them
@usamatariq4222
@usamatariq4222 3 жыл бұрын
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
@sribasmaji3330
@sribasmaji3330 2 жыл бұрын
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 .
@vaibhavsinhbihola1
@vaibhavsinhbihola1 3 жыл бұрын
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
@djrky3731
@djrky3731 2 жыл бұрын
Is ptr=&a correct Or *ptr=&a should correct
@chandana3799
@chandana3799 2 жыл бұрын
Mam.notes siguttha mam
@chandana3799
@chandana3799 2 жыл бұрын
Notes Madi kalsi mam
@Rupank_Sahu
@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 👍🏼👍🏼
@ShekhAbrar822
@ShekhAbrar822 6 ай бұрын
Understood easily because of your clear and detailed explanation U r much Better than our college faculties for whom we pay lakhs of fees
@ramgupta4535
@ramgupta4535 2 жыл бұрын
Conclusion of this Video 'Jis Datatype ka Pointer usi datatype ko saajhe, duja kare to thenga 👍 baaje' Thankyou Ma'am 🙏🙏
@maryannemuthoni5388
@maryannemuthoni5388 9 ай бұрын
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_658
@unique_658 6 ай бұрын
your way of teaching is simple and good .
@siddarthm3019
@siddarthm3019 2 жыл бұрын
Tq mam for explaining in easy way love from tamilnadu❣️
@dimathperera5047
@dimathperera5047 9 ай бұрын
Dear Madam, I appreciate you. 🤩
@chidiebereemereuwa9306
@chidiebereemereuwa9306 Жыл бұрын
Thanks Jenny!! God Bless you for me. These videos has really been helpful to me.
@himanshu-x8s6b
@himanshu-x8s6b 10 күн бұрын
so deeply lecture i watched 1st time
@tharinduhasarangarubasinsi7714
@tharinduhasarangarubasinsi7714 7 ай бұрын
Because of this Lecturer i passed my algorithms and data structure exam , good luck
@Computer9911
@Computer9911 8 ай бұрын
Thanks ma'am for your good video 📸 towards this pointers topic
@DarshanKumarTV-ur8tw
@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🤩🤗☺
@shrutichauhan4935
@shrutichauhan4935 2 жыл бұрын
Thanku mam to teach each and every concept in details .Your teaching level is so awesome 🥰🥰
@ApplyIT2021
@ApplyIT2021 2 жыл бұрын
Pointer is very useful. It is around two operators: memory address (&) and memory access (*)
@saifullahsiddiquei2851
@saifullahsiddiquei2851 Жыл бұрын
Please make videos on c++ language your teaching experience is very good
@abdulrahimjalloh363
@abdulrahimjalloh363 Жыл бұрын
You are the best teacher for programming in the whole world. Thanks for your effort and free gift.
@zahidkarim7440
@zahidkarim7440 2 жыл бұрын
Thanks madam beautiful explanation I like your teaching style
@nishantpandey6421
@nishantpandey6421 10 ай бұрын
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
@Shawaz11
@Shawaz11 3 жыл бұрын
Jenny man you are the best mentor and you did this topic very easly and good explan. 🤗🤗🤗
@sandeepsandra6880
@sandeepsandra6880 2 жыл бұрын
I Just cant listen your lecture by looking into your eyes 👀 👀 😍😍😍
@Rdrudra07
@Rdrudra07 3 жыл бұрын
The information we are getting at zero cost is having more value than paying 🙃....... ❤ ...... Thanks a lot mam...... for such great effort ❤💙💜
@Manan188
@Manan188 2 жыл бұрын
i am paying 90,000 rupees at coaching still have to watch this
@codeishard3182
@codeishard3182 2 жыл бұрын
​@@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.
@Manan188
@Manan188 2 жыл бұрын
@@codeishard3182 per year no coaching is good youtube is best
@codeishard3182
@codeishard3182 2 жыл бұрын
@@Manan188 can you suggest a playlist for discrete math? I like Indian tutorials whether it's Hindi or Indian English...
@suvashreepriyadarshinibisw8017
@suvashreepriyadarshinibisw8017 Жыл бұрын
How clearly mam you can described I see many of KZbin channel but no one can explain like this
@abdullahkhan-rp1ze
@abdullahkhan-rp1ze Жыл бұрын
Thanks a lot , a student is taking ur lectures from Pakistan....
@tonysofla
@tonysofla 2 жыл бұрын
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
@herohera3497 Жыл бұрын
smart
@bhabanisankarbehera4303
@bhabanisankarbehera4303 3 жыл бұрын
Tq..mam your teaching style is very good and easy also I was appreciated that video
@Svr_edits
@Svr_edits 2 жыл бұрын
I am diploma student I get an idea about pointers thank u mam
@bestsongs248
@bestsongs248 2 жыл бұрын
ye kitni awesome hai yarr💙💙💙
@easymalayali4310
@easymalayali4310 3 жыл бұрын
Big fan of your classes maam ❤️❤️❤️❤️
@tarunreddy8884
@tarunreddy8884 3 жыл бұрын
Hi mam i am very big fan of ur lectures and i am very happy to see u again
@macdaveedgolden7890
@macdaveedgolden7890 Жыл бұрын
I have searched through the nuke and cranny of this space.. I can boastfully say that your tutorials are magical.. thanks ma’am ❤
@BhanuprakshSasapu
@BhanuprakshSasapu 10 ай бұрын
Mam suop explanation tqq mam for this type of explanation ❤️‍🔥❤️‍🔥
@samirakhalil7223
@samirakhalil7223 Ай бұрын
Tack!
@humayonnasir4797
@humayonnasir4797 Жыл бұрын
Love you ma'am, Beauty with brain
@kwameanati
@kwameanati Жыл бұрын
*ptr = &x is wrong because of difference in data type. *ptr = &a is correct because of same data type which is int.
@bawaabdulsilas3681
@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.
@_MdJihadulAbedin
@_MdJihadulAbedin 3 жыл бұрын
Mam, the way of your teaching just awesome. Lots of love and respect for you Mam ❤️
@coder4116
@coder4116 3 жыл бұрын
Thanks mam it helps me a lot for learning c language
@shraddhapawar5674
@shraddhapawar5674 3 жыл бұрын
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
@yagalakshmi3912 Жыл бұрын
Thanks mam ❤️,lots of love from Andhra Pradesh 🔥
@suryakantpatel7793
@suryakantpatel7793 3 жыл бұрын
very useful ma'am aap ka lecture
@AnandHondappanavar
@AnandHondappanavar Жыл бұрын
Your teaching skills are superb madam 😊
@prateekverma5696
@prateekverma5696 2 жыл бұрын
best teacher ever . thankyou mam
@blobestanoh
@blobestanoh 2 жыл бұрын
You explin the concepts very well madam
@arunkhilari7011
@arunkhilari7011 Жыл бұрын
Thank you sister for the beautiful explanation of pointer.
@MadhuKarampudi
@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-md6jd
@AkashDeep-md6jd 5 ай бұрын
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 ]
@lifemalayalamyoutube7192
@lifemalayalamyoutube7192 4 ай бұрын
Thank you so much dear sister❤️you are an angel send by Ma Saraswathy❤️🙏🏾
@aarn3932
@aarn3932 2 жыл бұрын
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
@bogillivenugopalkrishna9864 Жыл бұрын
ptr=&a is possible because a is int type and x is float type
@smohammedmosin5196
@smohammedmosin5196 2 жыл бұрын
mam i thank you from my bottom of my heart from you r class i have understood bit level to byte level :)
@classicmantv9263
@classicmantv9263 Жыл бұрын
The right channel to subscribe to
@pravinbirajdar3555
@pravinbirajdar3555 3 жыл бұрын
Once again thnx mam see in this pointer sessoin so i come to increase incourage to I feel
@raidon5553
@raidon5553 Жыл бұрын
Ladies teachers are like mother becaz they teach student like their children..😊😊
@AkashDixitShorts
@AkashDixitShorts 2 жыл бұрын
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
@arshuarshad1551
@arshuarshad1551 11 ай бұрын
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
@theblackelephant
@theblackelephant 2 жыл бұрын
Hey Jenny thanks a lot for great videos. Programmers from South Sudan love you.😍🥰😍🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰😃😃😃
@enishettysharanya433
@enishettysharanya433 2 жыл бұрын
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
@nanilkumar5625 Жыл бұрын
Tnq so much for clear explanation with a single point👏
@dazaisan6697
@dazaisan6697 Жыл бұрын
100 times better than my own teacher at college
@amitaryan495
@amitaryan495 11 ай бұрын
#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_
@Aadi_di_tory_ Жыл бұрын
Glow of your teaching skills also reflects glow on your chiks🌟💯
@vimala7830
@vimala7830 3 жыл бұрын
Tq so much for your crystal clear explanation mam... Ptr = &a is right other one is worng...
@ReshmaTellismile
@ReshmaTellismile Ай бұрын
4 one is correct
@AnuragSingh-lu7on
@AnuragSingh-lu7on 2 жыл бұрын
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 ❤❤❤
@atulkumar1635
@atulkumar1635 2 жыл бұрын
I love you MAM , I want to learn C language from you in my whole life
@freefireclub425
@freefireclub425 2 жыл бұрын
Love you teaching mam
@Quizwhiz-official
@Quizwhiz-official Жыл бұрын
Seriously it's very helpful thanks ❤
@mohitbali8083
@mohitbali8083 2 жыл бұрын
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
@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-zb9gg
@MAROUANEMAROUANE-zb9gg 11 ай бұрын
i love this lady thank you so much
@khushalrane6143
@khushalrane6143 Жыл бұрын
You are amazing mam ! your lesson is more helpful for me
@ankitthakur4371
@ankitthakur4371 3 жыл бұрын
Video start at 2:53
@anilchaudhary7969
@anilchaudhary7969 Жыл бұрын
Ptr=&x // wrong Ptr=&a // right Because the data type declare of ptr is int
@sanskarkurude
@sanskarkurude 2 жыл бұрын
When I was a kid my sister also explains me like this thanks didi 😀
@sarveswaranbabu7767
@sarveswaranbabu7767 Жыл бұрын
boomer
@dgs2659
@dgs2659 2 жыл бұрын
1st line is wrong ,2nd line is correct......thank you mam to ease this concept for us.🙏🙏
@BanothSruthi-t5s
@BanothSruthi-t5s 8 күн бұрын
Float x,y Int a,*ptr is possible Prtr =&x is not possible because x is float Ptr=&a
@computer__sci
@computer__sci Жыл бұрын
Pointer and recursion are very easy if you study from good teacher
@nandishds9596
@nandishds9596 Жыл бұрын
Jenny lecture >>>>>>>>>>>all college faculties ☠️
@RajlaxmiWagh
@RajlaxmiWagh Жыл бұрын
float x,y; int a, *ptr; ptr=&x is wrong because ptr is expecting variable with int datatype ptr=&a is correct
@mudassarsiddiqui4112
@mudassarsiddiqui4112 2 жыл бұрын
Jenny madam 🙏🙏🙏 Such a good explanation.. You are doing an excellent job 👍👍👍
@BrijeshYadav-ic1bi
@BrijeshYadav-ic1bi Жыл бұрын
Hm 😂
@rosonerri-faithful
@rosonerri-faithful 3 жыл бұрын
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
@yashswichitkara
@yashswichitkara 8 ай бұрын
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)
@rakurame6990
@rakurame6990 3 жыл бұрын
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.
@shashanksp8020
@shashanksp8020 2 жыл бұрын
only 3rd ine is wrong
@naturespeaks3662
@naturespeaks3662 2 жыл бұрын
kzbin.info/door/SKYbfIoFy85vxaLEvjUq8Q
@pranavsingh4214
@pranavsingh4214 2 жыл бұрын
@@shashanksp8020 yes
@ammanrain5566
@ammanrain5566 2 жыл бұрын
3 is wrong
@DPCEHYMDADNANANSARI
@DPCEHYMDADNANANSARI 8 ай бұрын
Kitni awesome hai ywr💜
@Maths.Com_
@Maths.Com_ 3 жыл бұрын
Mam Please make a Playlist For Gate 2022 CSE Topics.Its a request to you mam 🙏.
@shinyrao2786
@shinyrao2786 2 жыл бұрын
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..
@AnietieLEssien
@AnietieLEssien Жыл бұрын
Thank you Aunty Jenny.
@ranjithpedagoni1961
@ranjithpedagoni1961 3 жыл бұрын
Your looks are killing mee😍😍😍😍
C_74 Pointers in C- part 4 | Pointer to Pointer (Double Pointer)
25:06
Jenny's Lectures CS IT
Рет қаралды 261 М.
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 2,4 МЛН
Миллионер | 3 - серия
36:09
Million Show
Рет қаралды 873 М.
C_109 Structures in C - part 1| Introduction to Structures
14:42
Jenny's Lectures CS IT
Рет қаралды 454 М.
Pointers in C for Absolute Beginners - Full Course
2:04:29
freeCodeCamp.org
Рет қаралды 243 М.
Call By Value & Call By Reference in C
8:34
Neso Academy
Рет қаралды 1,3 МЛН
The Most Important Problem In Physics (The Fermi Paradox)
14:57
you will never ask about pointers again after watching this video
8:03
C_75 Pointers in C-part 5 | Pointer Arithmetic (Addition) with program
23:18
Jenny's Lectures CS IT
Рет қаралды 231 М.
How to: Work at Google - Example Coding/Engineering Interview
24:02
Life at Google
Рет қаралды 7 МЛН
C_104 Recursion in C | Introduction to Recursion
18:51
Jenny's Lectures CS IT
Рет қаралды 438 М.