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

preview_player
Показать описание
correction: size of pointer is 4 bytes on 32bit machine
In this lecture we will discuss a C program to convert a string from upper case to lower case with strlwr() and without strlwr() function.

*********************************************

Connect & Contact Me:

Telegram Group Link: Jenny's Lectures
*******************************************

More Playlists:

Tags:
strings, string in c, what is string, c programming tutorials, c programming, best c programming tutorials, coding exercise, coding exercise on strings

#coding #strings #jennyslectures #cprogramming #clanguage
Рекомендации по теме
Комментарии
Автор

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

ankan
Автор

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 )

l.lawliet
Автор

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

coltenpulis
Автор

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 💙

praveensamuel
Автор

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

angelevergreen
Автор

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

pavanyegireddy
Автор

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. 🙏

devalsrivastava
Автор

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...😊😘❤

swetachaudhary
Автор

Please don't dislike mam's videos. She really works hard for

apudas
Автор

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 👍🏼👍🏼

Rupank_Sahu
Автор

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 .

sribasmaji
Автор

Thanku mam to teach each and every concept in details .Your teaching level is so awesome 🥰🥰

shrutichauhan
Автор

Pointer is very useful. It is around two operators: memory address (&) and memory access (*)

ApplyIT
Автор

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 ❤❤❤

AnuragSingh-luon
Автор

Mam, the way of your teaching just awesome. Lots of love and respect for you Mam ❤️

_MdJihadulAbedin
Автор

Thank you ma'am so much for such wonderful and well-informative videos, keep it up...

himanshumaithani
Автор

Tq..mam your teaching style is very good and easy also I was appreciated that video

bhabanisankarbehera
Автор

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

usamatariq
Автор

I have searched through the nuke and cranny of this space.. I can boastfully say that your tutorials are magical.. thanks ma’am ❤

macdaveedgolden
Автор

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

vaibhavsinhbihola