C_114 Unions in C | C Language Tutorials

  Рет қаралды 177,113

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 176
@hariparuchuru3858
@hariparuchuru3858 2 жыл бұрын
if we dont initialize c value then the last entered value char b as 97. this means the combined memory allocation for union will store the last entered value 97 which int a also can access so the output will be a value is 97 b value is a
@omarahmedaziz4877
@omarahmedaziz4877 3 жыл бұрын
Mam your teaching method is really amazing. Please complete this series ASAP. ❤️
@moonglaiv3
@moonglaiv3 2 жыл бұрын
Can’t stress how good this course is. Really helped a lot. Thank you.
@kanaksinghal9748
@kanaksinghal9748 3 жыл бұрын
Start from 2:24
@chanukabandara139
@chanukabandara139 Ай бұрын
@Yooarmy
@Yooarmy Жыл бұрын
No words to describe your role in my study ma'am Heartiest thanks to you ma'am 🙏
@cutecat1118
@cutecat1118 3 жыл бұрын
Your Method of teaching is the best..... You are the best one....
@saharnaqib
@saharnaqib 3 жыл бұрын
thank you from Afghanistan , i learned a lot form you videos i am a CS student
@azhaguveeraazhaguveera8112
@azhaguveeraazhaguveera8112 3 жыл бұрын
Greate mam..... Your approach is very practical...
@sahilbeniwal69
@sahilbeniwal69 3 жыл бұрын
Mam , You are the best teacher i ever seen your teaching method is best
@SD-tu1tn
@SD-tu1tn Жыл бұрын
You make it easy to grasp some concepts in C that i thought difficult beforehand. Thank you very much
@archanafugare6895
@archanafugare6895 2 жыл бұрын
At 6.19 memory will be 12 bytes not 9 bytes as structure padding. If char is last var of structure then 9 bytes will be allocated
@leo5457
@leo5457 2 жыл бұрын
Structure padding means!?
@qazicode4467
@qazicode4467 3 жыл бұрын
Mam Please make a tutorial on " NESTED STRUCTURE ".
@asadjan1001
@asadjan1001 3 жыл бұрын
Asad from Pakistan ur teach style is very fabulous mam
@Byndhrzns
@Byndhrzns 2 жыл бұрын
The answer to your assignment is --For u.a is some garbage value,and --for u.b is 97;
@dasadiamukeshbhai6100
@dasadiamukeshbhai6100 2 жыл бұрын
Ma'am meri college me padhate hai usme kuch samaj nahi aata.. aaj aapka video dekha union sikh liya pura thank you!! You are best Ma'am 🌸🙌🏻❤️
@vedantideshmukh1875
@vedantideshmukh1875 3 жыл бұрын
Mam I am learning lot more things from you . I learned data structure ,operating systems from you and I want to request you will you please start series on Computer structure and architecture
@11TLK
@11TLK 3 жыл бұрын
Mam mera najar nahi hat raha aapse Ek to aap bahut khubsurat hai Or aap explain bhi aachha karte hai 🇮🇳🇮🇳🇮🇳 I love you 💞💞💞💞💞💞💞💞💞💞💞💞💞💞💞💞💞💞💞💞💞
@govindarao331
@govindarao331 3 жыл бұрын
Mam plz do videos on Java, phyton
@riyagupta1841
@riyagupta1841 3 жыл бұрын
Mam pls also cover enum and malloc,calloc,realloc inC before going on file handling pls mam plssss 🥺
@JennyslecturesCSIT
@JennyslecturesCSIT 3 жыл бұрын
Okiee
@saptarshibiswas1998
@saptarshibiswas1998 3 жыл бұрын
@@JennyslecturesCSIT yes ma'am, please cover those topics, it is very important, plzz 🥺
@riyagupta1841
@riyagupta1841 3 жыл бұрын
@@JennyslecturesCSIT Mam plz upload next video 🥺
@saibanali9515
@saibanali9515 3 жыл бұрын
Your channel is more use full to me thank you so much mam
@18fatima15
@18fatima15 8 ай бұрын
11:39 It should be struct demo *ptr = &s 17:07 #include union abc { int a;char b; float c; }; int main() { union abc u; union abc *ptr=&u; u.a=1; u.b=97; printf("a=%d",ptr->a); printf(" b=%c",ptr->b); return 0; } OUTPUT: a=97 b=a
@Cutestthing4707
@Cutestthing4707 25 күн бұрын
Can u explain me how
@Cutestthing4707
@Cutestthing4707 25 күн бұрын
Why a=97
@nishasiddu5487
@nishasiddu5487 8 ай бұрын
No one explains like you hats off 🫡
@luckyscreation7396
@luckyscreation7396 2 жыл бұрын
12bytes allocated in struct mam, because there is no #pragma pack(1).
@saradiwan6734
@saradiwan6734 2 жыл бұрын
ma'am it will print a as the ASCII value of 97 is a
@smartboysai930
@smartboysai930 3 жыл бұрын
Sister I understood u r classes .I request u to plz give PDF or notes for c language.tq sister I am going b.tech in this year .
@07philomath09
@07philomath09 3 жыл бұрын
Mam it’s my kind request to complete this series ASAP we hav exams next month and I want to complete whole data structures within that. 🥺
@azannasir8895
@azannasir8895 3 жыл бұрын
Your teaching method is really amazing 😍 Love from Pakistan 🇵🇰❤️
@kothamachusupriya9590
@kothamachusupriya9590 2 жыл бұрын
it gives lowercase a as output because 97 is its ascii value and u declared b as charecter
@kirangadani2225
@kirangadani2225 3 жыл бұрын
Is this playlist enough for gate c programming..?? Can i rely on it?
@nandhagopal9304
@nandhagopal9304 3 жыл бұрын
Mam explain structure padding and structure packing
@MadhuKarampudi
@MadhuKarampudi Жыл бұрын
a value will become the b values if we enter any integers(1 byte integers) b will be any garbage value
@30amankaushik29
@30amankaushik29 3 жыл бұрын
Ma'am please bring back to back lectures its my request to u is that first please complete the c course and after completing it then please bring lectures on java courses.
@coding1415
@coding1415 3 жыл бұрын
kzbin.info/www/bejne/a5irhpp_dqhrjdE C language
@linceesen1086
@linceesen1086 Жыл бұрын
Thank u for teaching us so easily...No one can beat your teaching method,Love from Kolkata❤❤
@Bornkill-jq7ts
@Bornkill-jq7ts 2 жыл бұрын
Mam we can use methametical expressions in union
@AnkitThakur-dp8gx
@AnkitThakur-dp8gx 2 жыл бұрын
Tmare padhaane ke tarikhe se pyaar hogya h mjhe or tumse bhi
@SaraswotiKhadka
@SaraswotiKhadka 2 жыл бұрын
a= garbage value, b = 97.(last value)
@xylonature7787
@xylonature7787 Жыл бұрын
Bro.... That's a char data type but the initialized value is of int
@solarpump3688
@solarpump3688 3 жыл бұрын
You are best teacher
@soniasonia4292
@soniasonia4292 3 жыл бұрын
Dear Mam, I am your old follower and fan but i need your help. Please teach me this program program. Write a C function to evaluate the series sin(x)= x - (x**3 / 3!)+(x**5 / 5!) - (x**7 / 7!) + .... to five significant digits.
@mathsfortune6thclass
@mathsfortune6thclass 3 жыл бұрын
Mam,is there any good book for c programming which covers everything about c programming in detail and easy to understand?Also,mam is there any good book for introduction to computers which covers topics like alu,memory(ram,rom),processor, operatingsystem,software,hardware,motherboard.Please mam reply.
@aryantripathi5574
@aryantripathi5574 2 жыл бұрын
Mam int is 2 byte of memory location.
@leeparrr
@leeparrr Жыл бұрын
in some compilers its 4bytes
@sanjanapanwar3844
@sanjanapanwar3844 3 жыл бұрын
Ma'am after this please start Java
@tusharsrivastava5471
@tusharsrivastava5471 2 жыл бұрын
Mam you r so cute. only bcoz of you i love to study c language
@JaiminPrajapati-ke6gr
@JaiminPrajapati-ke6gr 2 жыл бұрын
Mam please make video on sql /pl-sql full course..
@universe449
@universe449 Жыл бұрын
Beauty with brain Mam ur teaching is really awesome Every difficult topic u made it easy Thank you mam so much ❤️❤️☺️☺️☺️☺️☺️❤❤❤❤
@rajendraboke6927
@rajendraboke6927 3 жыл бұрын
Ek number 😍😍
@machanisomu
@machanisomu 3 жыл бұрын
Nice explanation
@thegatelearner-original
@thegatelearner-original 3 жыл бұрын
Mam your teaching method is really amazing👍
@deganath106
@deganath106 Жыл бұрын
mam a small correction at 9;15 - u.a is not garbage value it is 9.2
@sabithagireesh7662
@sabithagireesh7662 Жыл бұрын
Thank you mam for such helpful class🙂 all my doubt are cleared Love from kerala ❣️
@sumitbhoi4070
@sumitbhoi4070 Жыл бұрын
Jhand
@abidyousuf2927
@abidyousuf2927 3 жыл бұрын
Plxx provide lectures on python programming
@jsahoo3615
@jsahoo3615 3 жыл бұрын
Hello mam, can you upload full java programming language all videos 🙏🙏🙏
@nagarjuna4541
@nagarjuna4541 Жыл бұрын
Madam int size is 2bytes
@satyajitmanna8501
@satyajitmanna8501 2 жыл бұрын
print a= garvag value and b = 97
@more-omkar
@more-omkar 2 жыл бұрын
No it prints a=97 and b=a.
@qazicode4467
@qazicode4467 3 жыл бұрын
Mam Please make a tutorial on "Enumeration"
@IntellectualWarfare441
@IntellectualWarfare441 3 жыл бұрын
Practical on Laptop vs Blackboard
@divya-hj7xh
@divya-hj7xh 3 жыл бұрын
Mam is C sharp is there in engineering syllabus. What is the difference between C and C#.
@pranav-wi5uf
@pranav-wi5uf 2 жыл бұрын
No mam size of the structure is not directly calculated. Its wrong data padding will there in structure for processors optimization and also how you are declearing.
@ankammaraochintala2509
@ankammaraochintala2509 3 жыл бұрын
Thank you madam
@meghapriya7641
@meghapriya7641 3 жыл бұрын
Mam please make videos on Compiler Design as well.
@ganeshjaggineni4097
@ganeshjaggineni4097 2 жыл бұрын
NICE SUPER EXCELLENT MOTIVATED
@elaprolulokesh9052
@elaprolulokesh9052 3 жыл бұрын
Mam Can you start python ??
@Theabhialone
@Theabhialone 3 жыл бұрын
Mam you are great amazing 💥
@pranavwakte9448
@pranavwakte9448 3 жыл бұрын
Mam, can you tell the best programming book for python and Java??
@Joshi7633
@Joshi7633 3 жыл бұрын
c program implement non preeptive priority sheduling with ganntt
@beniematoka
@beniematoka 2 жыл бұрын
In the struct memory allocation, why did you not take the padding into account. I am a bit confused.
@zaydaofficial699
@zaydaofficial699 Жыл бұрын
Hello
@joebosah2727
@joebosah2727 3 жыл бұрын
Totally understood Thanks, Jenny
@Krishna_Raj11
@Krishna_Raj11 3 жыл бұрын
mam I am MCA student can i prepare net exam for making a professor?
@Fitness_Brand06
@Fitness_Brand06 Жыл бұрын
Ma’am you eyes is so beautiful ❤
@i_am_with_u-7.
@i_am_with_u-7. 3 жыл бұрын
Tell me about Java language
@shalumall8014
@shalumall8014 Жыл бұрын
Mam ur teaching method is very nice👍
@olisykes379
@olisykes379 2 жыл бұрын
I love u so much ..... As a teacher
@neepunpatil5201
@neepunpatil5201 3 жыл бұрын
Ma'am why don't you use dark theme Vs code it's good for eyes
@shubhamkumarsharma1568
@shubhamkumarsharma1568 3 жыл бұрын
Mam please makr playlist on c++
@pritmonpara406
@pritmonpara406 3 жыл бұрын
File handing per video banavo
@ganeshneela7026
@ganeshneela7026 3 жыл бұрын
Your voice is a DRUG... ❤️❤️❤️
@BTCIV_AyushMalviya
@BTCIV_AyushMalviya 2 жыл бұрын
Thankyou Mam
@thirupathimerugugoud1025
@thirupathimerugugoud1025 3 жыл бұрын
Mam,can you teach java language also
@sunilmaurya6892
@sunilmaurya6892 2 жыл бұрын
mam pls inc the quality of videos
@muthaiyavishwanath5376
@muthaiyavishwanath5376 3 жыл бұрын
Mam can you teach vb.net course
@srinivaschinthaginjala
@srinivaschinthaginjala Жыл бұрын
I LOVE YOU MADAM❤❤❤❤❤. REALLY UR TEACHING AMIZING❤❤❤❤❤
@anujeetkunturkar780
@anujeetkunturkar780 3 жыл бұрын
1st it will print a=97 and b = garbage value or Nothing ........!!
@Honey-j5n
@Honey-j5n 4 ай бұрын
Please explain java also ur teaching is very good
@sumanthb178
@sumanthb178 Жыл бұрын
Mam structure padding will not be applicable to all compilers?
@Raam1827
@Raam1827 Жыл бұрын
Is it need to if struct student s1; struct student *ptr; ptr = & s1; or simply we can assign ptr = s1; because s1 holds base address
@leeparrr
@leeparrr Жыл бұрын
yes if u meant to say s1 holds it's own address then u can do so...
@a.t7119
@a.t7119 2 жыл бұрын
Size of the structure is 12 not 9
@TheLinKueiWarrior
@TheLinKueiWarrior 3 жыл бұрын
Maam how can I ask you doubts?
@veerbista2004
@veerbista2004 9 ай бұрын
ma'am at the end of this video i saw your necklace 🤭😃 its suits on you perfectly! 😉😍🤩
@AnkitThakur-dp8gx
@AnkitThakur-dp8gx 2 жыл бұрын
beautiful and sweet mam teach us better
@talhashah3986
@talhashah3986 2 жыл бұрын
Thank You
@chavvasravani9462
@chavvasravani9462 3 жыл бұрын
mam which online course is best for programming mam i am beginner mam i completed by 12th recently plz suggest me mam
@FrameCyborg402
@FrameCyborg402 2 жыл бұрын
Depends on what language you are learning
@A1Tech6111
@A1Tech6111 2 жыл бұрын
Thanks medam
@NivedithaSonule
@NivedithaSonule Жыл бұрын
Mam what is the memory bytes of the int
@pritmonpara406
@pritmonpara406 3 жыл бұрын
C++ start karo
@abdulbasit6618
@abdulbasit6618 Жыл бұрын
can anyone please tell me , if I want to know the size why there only format specifier (%d) is used, cannot I use the format specifier of any other data type available in the union or struct member to know the size. please let me know.🤔🤔🤔
@aparnamane4899
@aparnamane4899 2 жыл бұрын
thank you mam❤
@siva2076
@siva2076 3 жыл бұрын
Madam which language you ???
@riyagupta1841
@riyagupta1841 3 жыл бұрын
Mam pls upload video...😃
@srihariharand2177
@srihariharand2177 2 жыл бұрын
ayo enna alagu😍❤❤
@ravitejatiruveedhulablocks1367
@ravitejatiruveedhulablocks1367 3 жыл бұрын
plaese complete asap
@Qpwrty
@Qpwrty 10 күн бұрын
Mam , ur necklace 🤩
C_115 Structures in C using typedef | C Language Tutorials
11:06
Jenny's Lectures CS IT
Рет қаралды 131 М.
C_109 Structures in C - part 1| Introduction to Structures
14:42
Jenny's Lectures CS IT
Рет қаралды 475 М.
BAYGUYSTAN | 1 СЕРИЯ | bayGUYS
37:51
bayGUYS
Рет қаралды 1,3 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 681 М.
C_119 File Handling in C - part 1 | Introduction to Files
12:15
Jenny's Lectures CS IT
Рет қаралды 361 М.
C_113 Pointer to Structure in C | Structure Pointer | C Language Tutorials
15:04
Jenny's Lectures CS IT
Рет қаралды 233 М.
C_135 Dynamic Memory Allocation using realloc() | C Language Tutorials
18:10
Jenny's Lectures CS IT
Рет қаралды 86 М.
Function Basics | C Programming Tutorial
15:36
Portfolio Courses
Рет қаралды 75 М.
Master Pointers in C:  10X Your C Coding!
14:12
Dave's Garage
Рет қаралды 333 М.
C_101 Function Pointers in C | Pointer to Function | C Programming Tutorials
18:04
Jenny's Lectures CS IT
Рет қаралды 144 М.
Learn Any Programming Language In 3 Hours!
22:37
Code With Huw
Рет қаралды 596 М.
C_116 Structure Padding in C | C Language Tutorials
18:25
Jenny's Lectures CS IT
Рет қаралды 105 М.
you will never ask about pointers again after watching this video
8:03