Fabulously explained mam. Totally convincing explanation for why the data types are associated with pointers and how dereferencing the void pointer is gonna end up throwing an error. Thank you soo much. Keep up the good work.👍
Madam, I enjoyed every single video of your C program (I just finished the 80th) and I am excited to study the remaining ones. You do a terrific job. Thank you from Canada.
I live in Chennai My age is 36 I've completed MCA still I'm not very good in programming but I'm confident that I'll become very good at it by watching your videos personally in my opinion you're the best teacher on youtube I mean there are several other program teachers but you're the best among them!! Programming is like math if understood clearly it's the most easiest but otherwise it's the most hardest n you clearly explain and make it easy understand Pointers is considered is one of the hardest to learn but your clear explanation makes such hard concept easy
One thing I want to say that to you mam, You are tired or not mam you are working so much for us, make a such beautiful, excellent data for us that's why I am saying that you are tired or not 🤔🤔🤔❤️❤️❣️❣️🥰🥰
You are amazing. I love the way you teach and explain things. i am starting in C programming and it is so amazing how you are knowledgable in this. You are my role model and i wish to improve my knowledge in C programming. Thank you for the videos, they are really helpful. Please Can you also do videos on _putchar? i am currently a student in ALX and we are not allowed to use printf. we only use putchar for displaying results
Mam some qstns to u Reply me during comments video Mam Since every one is commercialised now a days 1.What is your aim behind providing FREE content to the learners/viewers? 2.Do u love or enjoy teaching mam? 3.why did u choose teaching as u r profession instead of settling in corporate world(IT Company's)? 4.if some one offers a good job with high salary package Wil you stop your videos mam? 4.what do u expect from your viewers/learners madam ? 5.Do u think your self as the best teacher? 6.How much do u rate your self for your teaching out of 10? 7.why did you opt TH-cam as your platform for teaching instead of Colleges? 8.Other than youtube if some body ask u teach freely in institution do teach madam? 9.which author text books u prefer or recommend for this subject madam? 10.Finaly what is your ultimate goal madam?
Hello ,I have one doubt , for int*,char* and float* data types store the address only hence for 16 bit compiler all (int*,Char* and float*) occupy same size means 2 bytes only right !, but you said before dereferencing int* access 4 bytes,char *1byte and float* 4 bytes can you clarify this?
Hi Jenny, I like your videos. You said that float and int are 4 bytes, and the compiler needs cast to know how many bytes to dereference. If so, why when I have a void pointer that points to an int, and I dereference it with a float cast which is still 4 bytes, the compiler gives the wrong value? int x = 5; void *vp = &x; printf("Wrong value: %d", *(float *) vp);
Hello ma'am, my name is Het. I have questions regrading to C, C++,and some higher level languages. 1- I want to know about, why we learn C and C++ , I mean what are the benefits of this languages because this will never use in current era. Am I write ma'am? 2- what are the benefits of pointer and all(if/else , switch case)? Can you please make any separate video about my question? I hope you will make separate video about it.
Bro, who told you that c/c++ are not being used in the current era. The Google chrome and the majority of the browsers is written in c/c++. Major operating systems including windows, Android and Mac are written in c Languages. And all the Major game development and game engine development takes place in c++. The compiler of almost all the languages is written in c language. The node.js which has made server side javascript possible is written in c++. And the Netflix video content codecs using which they make their video content of such high quality is written in c++. Almost everything you will be using will be having some elements of c/c++ engrained in them. C language is the best language for learning computer science at the highest depth.
@@rameshwarprasad4722 ok sir , thanks for your knowledge but can you please give me the other knowledge about pointer that how pointer can be used in industry in current time?
@@hetpatel5358 Hey Patel, pointers will help you understand how other programming languages like Java, Python etc... pass around their arguments. It is helpful for the development of a computer science student or programmer as a whole.
Who told you that C, C++ are not used anywhere now a days? C++ is the language of choice in Payment Interaction applications. Most Payment Switches still have their Integration-Switches in C++ as it is the fastest executable available. C++ is blazingly fast because of its native nature. Embedded systems use C/C++. Ask any Electronics company professional, he will tell which is the preferred language for development. Banking platforms prefer C++ implementations. Visual C++ which uses Microsoft Foundation Classes is leveraged to create so many Operating System utilities from display drivers to anything imaginable. Most time critical systems use C++. And when you say Higher Level languages and consider C/C++ as low you probably have very little idea about Computing Systems as a whole.
*BUT YOU DIDN'T TELL WHY DO WE USE VOID POINTERS?* - they are used to optimize line of code by making a pointer reusable, without the need of declaring it again and again in different sections of a program for various datatypes. But the programmer must be careful to follow the casting rules to take advantage of a void pointer.
Fabulously explained mam. Totally convincing explanation for why the data types are associated with pointers and how dereferencing the void pointer is gonna end up throwing an error. Thank you soo much. Keep up the good work.👍
Madam, I enjoyed every single video of your C program (I just finished the 80th) and I am excited to study the remaining ones. You do a terrific job. Thank you from Canada.
Wonderful!
Thanks
I live in Chennai My age is 36 I've completed MCA still I'm not very good in programming but I'm confident that I'll become very good at it by watching your videos personally in my opinion you're the best teacher on youtube I mean there are several other program teachers but you're the best among them!! Programming is like math if understood clearly it's the most easiest but otherwise it's the most hardest n you clearly explain and make it easy understand
Pointers is considered is one of the hardest to learn but your clear explanation makes such hard concept easy
One thing I want to say that to you mam, You are tired or not mam you are working so much for us, make a such beautiful, excellent data for us that's why I am saying that you are tired or not 🤔🤔🤔❤️❤️❣️❣️🥰🥰
You are amazing. I love the way you teach and explain things. i am starting in C programming and it is so amazing how you are knowledgable in this. You are my role model and i wish to improve my knowledge in C programming. Thank you for the videos, they are really helpful. Please Can you also do videos on _putchar? i am currently a student in ALX and we are not allowed to use printf. we only use putchar for displaying results
Amazingly explained why dereferencing of void pointer cause an error👏👏
Hello,Mam
I'm from Bangladesh.
Mam,,please explain Dangling pointer concept in details in your next session.
Thank you🥀
Mam congrats for 1 milion subscribers!!!!!!!!🎉🎉🎉
This video adds more on c programing thanks madam
thanks so much!! Awesome explanation! I understood perfectly
Far Far Far Far Better than our College Teacher😢
I love your teaching style
Appreciate the simple explanation.
Thanks a lot Mam for this lecture!!!
1. Can we carry out arithmetic operations on void pointers before typecast?
2. Can we carry out sizeof() on void pointers?
Mam some qstns to u
Reply me during comments video
Mam Since every one is commercialised now a days
1.What is your aim behind providing FREE content to the learners/viewers?
2.Do u love or enjoy teaching mam?
3.why did u choose teaching as u r profession instead of settling in corporate world(IT Company's)?
4.if some one offers a good job with high salary package Wil you stop your videos mam?
4.what do u expect from your viewers/learners madam ?
5.Do u think your self as the best teacher?
6.How much do u rate your self for your teaching out of 10?
7.why did you opt TH-cam as your platform for teaching instead of Colleges?
8.Other than youtube if some body ask u teach freely in institution do teach madam?
9.which author text books u prefer or recommend for this subject madam?
10.Finaly what is your ultimate goal madam?
Hello ,I have one doubt , for int*,char* and float* data types store the address only hence for 16 bit compiler all (int*,Char* and float*) occupy same size means 2 bytes only right !, but you said before dereferencing int* access 4 bytes,char *1byte and float* 4 bytes can you clarify this?
Super teaching madam🎉🎉🎉
Mam, please explain user defined fuctions...we are having exams next week mam
Thanks for your efforts mam
superb explaination. Thank you so much mam................
suppose I want to assign value from void pointer to some variable , then how shall we doi it ?
Tqq mam ❤️.
Good afternoon Madam, in my textbook there is given and that is void is a datatype mam??
Which application u are using to run the programs of c
Mam firstly thankyou for helping us!
But pls mam kind request to u,pls put lecture videos little fast mam plssssss🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼
Mem can you please make playlist on c++ and java for Beginners
jenny mam i love you coz of u only i learned c language
give me your address i wanna send some gift for u
Ma'am it's request to you plzz make a video on what we have to do after Diploma nd related exam to computer science engineering.
Mam could you please explain about structures and unions , and file management plz mam .
4:15 Ma'am, then what will be the data type of pointer ( int *p ) ???
Thanks from America
What Jhumka😍
mam, is void pointer created a memory when we declare a void pointer ?
is void pointer have memory address ?
Nice lecture
Thanks mam
Thank you mam
Hi Jenny, I like your videos. You said that float and int are 4 bytes, and the compiler needs cast to know how many bytes to dereference. If so, why when I have a void pointer that points to an int, and I dereference it with a float cast which is still 4 bytes, the compiler gives the wrong value?
int x = 5;
void *vp = &x;
printf("Wrong value: %d", *(float *) vp);
Hello Ma’am…kya aap bata sakti hai ki is playlist me aur kitne topics judenge and kab tak ? And iske baad main DSa playlist start kar sakta hu kya ?
Yes ma'am r8....
Ma'am today looking so sweet n innocent...
I am from Bangladesh...
Ma'am love u so much....
Please explain dynamic memory allocation also mam
Mam int takes 2 bytes na
@@Prasannayadav16128 in 16 bits compiler int size is 2 and in 32 bits size is 4
Thank you so much mam
Nice explanation of pointer
hi maam im using online compiler in that without typecasting the output is showing the exact result
great explaination
mam, please make more video's on void pointers in c.
Love from 🇱🇰
just awesome
Can you please explain storage classes mam
very nice lecture
Hi madam may you please talk about far en near pointers
For integer 2memory allocations no mam
Good morning mam and very helpful but i have doubt. Why was de refrence void pointer mam ?
please teach math calculus! love u from Pakistan!
WHY DIDNT U EXPLAIN PASSING ARRAYS TO POINTERS,PASSING FUNCTIONS TO POINTERS, FUNCTIONS RETURNING POINTERS!!!!.....😢😢😢
@jennylectures pls respond!!!😢😢😢😢
Madam...How to access Array with Void Pointer
how to write find higest element in an array using function
I am regular student mam first view and first like mam
take care maam 😉😉
Mam waht is type casting
How to print address using void pointer mam?
Hello ma'am, my name is Het. I have questions regrading to C, C++,and some higher level languages.
1- I want to know about, why we learn C and C++ , I mean what are the benefits of this languages because this will never use in current era. Am I write ma'am?
2- what are the benefits of pointer and all(if/else , switch case)?
Can you please make any separate video about my question?
I hope you will make separate video about it.
Bro, who told you that c/c++ are not being used in the current era. The Google chrome and the majority of the browsers is written in c/c++. Major operating systems including windows, Android and Mac are written in c Languages. And all the Major game development and game engine development takes place in c++. The compiler of almost all the languages is written in c language. The node.js which has made server side javascript possible is written in c++. And the Netflix video content codecs using which they make their video content of such high quality is written in c++. Almost everything you will be using will be having some elements of c/c++ engrained in them. C language is the best language for learning computer science at the highest depth.
@@rameshwarprasad4722 ok sir , thanks for your knowledge but can you please give me the other knowledge about pointer that how pointer can be used in industry in current time?
@@hetpatel5358 Hey Patel, pointers will help you understand how other programming languages like Java, Python etc... pass around their arguments. It is helpful for the development of a computer science student or programmer as a whole.
@@ezranathanael9566 thankyou so much for your answer.
Who told you that C, C++ are not used anywhere now a days? C++ is the language of choice in Payment Interaction applications. Most Payment Switches still have their Integration-Switches in C++ as it is the fastest executable available. C++ is blazingly fast because of its native nature. Embedded systems use C/C++. Ask any Electronics company professional, he will tell which is the preferred language for development. Banking platforms prefer C++ implementations. Visual C++ which uses Microsoft Foundation Classes is leveraged to create so many Operating System utilities from display drivers to anything imaginable. Most time critical systems use C++. And when you say Higher Level languages and consider C/C++ as low you probably have very little idea about Computing Systems as a whole.
int i=10;
void *p=&i;
printf("%f
",*(float *)p );
why the result is: 0.0000?
this should be 10.0000
explain plz mam.
Line number 2 is invalid.
Void *p;
p= &i;
This is how u should write it
@@SantoshDesai143_RamSan then how it works?
6:36 khusi dekh rhe ho vinod
mam can you explain the calloc and rellaoc please mam
Abhi kitna lecture rah raha ha mam ❤️❤️❤️🔥🔥
The dress is beautiful,but you are more beautiful 😍
mam where are your from
Mam When will you finish other topics .our exam are comming .
Today when i open Instagram i just saw your meme in which you are making so killer expression . So i decided to die . So i am here.
Mam nenu C program mottam mi vedios ea chusa
th-cam.com/video/7XnlqIjqGbs/w-d-xo.html
9:45
MAM plz upload the lecture String Matching
C+ can use in MCA
👍
i am from Afghanistan thanks for motivation
Mam aur kithne classes hongey pura
What i have to do
Nice Dress😊
you sayed khaly do you speak arabic?
Pls mam, pls can you start teaching java side by side
How you remember all the language am surprised🙄
#AnujBhaiya is on Unacademy
Mam do you know telugu 😮😊😊
Hello mam i want to learn program language
maam c++ video plz.
My name is Prashant Singh
I stude diploma Computer science engineering
*BUT YOU DIDN'T TELL WHY DO WE USE VOID POINTERS?* - they are used to optimize line of code by making a pointer reusable, without the need of declaring it again and again in different sections of a program for various datatypes. But the programmer must be careful to follow the casting rules to take advantage of a void pointer.
Bruh? She did say those exact words (14:50)
Thanks
@@floatoss thanks
@@floatoss he just use these words to attract & make him channel grow
14:50
Me to mam ko dekhane ke liy class dekhta hu
2 bytes
Hii mam
1st view
How r u mam .....
Mam this is charan
Mam how beautiful you ❤️ from kashmir distinct baramulla
Hai madam your lecture beautiful like you
Hi hello mam stop computer science explation video and start modeling video mam
Some other drink = alcohol
Hi mam only one reply