Thanks miss for explaining this topic in English because students like me who belong to non hindi speaking states are getting equal opportunity to learn this topic from you... Thanks a lot Maam
@@Raju_Sharma852 If we take CSE it doesn't matter which language we know or not we should try our level best to understand english . And as we are not english speaker by birth so we should listen English lecture to increase our English vocabulary power.....
@Razeen Asief Then why don't our South Indian brothers and sisters upload video on such topics ( JEE, UPSC, Programming etc) when cities like Bangalore and Hyderabad is the hub of technology/tech industries ??
Mam I have done my exam but I didn't prepare for it so I watched your lecture but I forgot to do this before my exam at 12 pm to 2pm and I watched our lecture at 4pm for preparation for exam and the fun fact is I got 99.98% without preparation 😅🙃🙂😄 thanks for helping me to optimize LEGACY GEN10 for exam logic and preparation. Be single and an stay 💯😌 motivated because after relationship you can't be motivated you only distracted 💯🤧😌🤷 Janhit main Jari, Ladki padhaegi padhai pe distraction ki bahari
your videos have been very helpful to me as a student and i have gained confidence to as well anytime i write a C program. Thank you for your dedication in making these videos
when i am learning java frames, than why i am here 😁😁😁 Just to support you mam , i still remember dsa and myself before 2 days before exam thanks for videos 💖💖💖
In reality c is being used very rarely in organization , Java is being used widely Those who don't like coding can choose automation testing (20% coding only )
You are VERY wrong when you say C is used rarely in organization. MANY of the top BIG organizations use C. Do research and you will see C is one of the most used languages especially for backend programming since it is so fast.
Hi. If we are passing address by call by reference method, then why we are not entering asterisk symbol in function definition. Simply int avg (int *marks[], int a)
Superoo superobhya superosyaha....👏👌 And that word "fine" in between the explanation is so cute. When I'm explaing the vdo's of u to my friends, unfortunately, I'm also pronouncing "fine" and "Ok" as like u..!!
Hi, whenever the base address of an array is transferred as an argument to the function then during the function declaration is it not required to dereference the pointer? Otherwise how we get the value at that address? Like as u did in marks [ ]. So, is it not required to dereference the pointer in order to access the value?
Madam I need your suggestion regarding my career I just have completed my 12th standard and I learn c language from a well known institute of my locality Which course should I start next other python or java or any other please suggest me some good course
Hello mam, here for array in definition part, when we r getting address of the 0th index of the variable, we didn't add * in definition function, but in case of string we added * in definition function, why? String is also an array, so why it has different rule? If u answer then it will be very helpful for me, I'm confused with it.
Maam will you please do it Write a c program using function in which there will be two arrays of different lengths and 1 element of one array will be added with every element of the other array
Ma'am would u take class about Array, Structure, and Union. You have already taken the class about Pointer right? Other 3 derived data types are still left. We need those topics also.. Plz ma'am .. Waiting for that.. Thank you 😊
my output: inside avg function size of array is(in bytes):8 average=30 inside main sizeof array is (in bytes):20 how is this possible size of a single element is 8, but why the size of the array is 20. Please anyone explain this contradiction.
I got 8 bytes size of array in avg function what is the reason #include int avg(int[],int); void main() { int average,size; int marks[5]= {10,15,20,30,45}; size=sizeof(marks)/sizeof(marks[0]); average=avg(marks,size); printf("Average is %d ",average); printf("Size of array (inside main) is %d ",sizeof(marks)); printf("Size is %d ",size); } int avg(int marks1[],int size) { int i, sum=0, average=0; for(i=0; i
If you write the following program:- --------------------------------------------------------------- void getArraySize(int arr[]){ int len = (sizeof(arr)/sizeof(arr[0]) printf("Array Length:%d ",len); } int main(){ int array[] = {1,2,3,4,5}; getArraySize(array); return 0; } ---------------------------------------------------------------- You'll get this warning. - sizeof on array function parameter will return size of 'int *' instead of 'int []' [-Wsizeof-array-argument] - --------------------------------------------------------------- This is because:- The array decays to a pointer when passed. So sizeof only works to find the length of the array if you apply it to the **original array**. So you need to **pass length of array as separate argument to function**.
I don't know why its showing 8 byte instead of 4 or 2 byte . #include int func(int[]); int main() { int arr[]={1,2,3,4,5}; printf("inside main: %d ",sizeof(arr)); func(arr); } int func(int arr1[]) { printf("inside func: %d ",sizeof(arr1)); }
Thanks miss for explaining this topic in English because students like me who belong to non hindi speaking states are getting equal opportunity to learn this topic from you... Thanks a lot Maam
Also people who are not like you, who only understand Hindi are not getting equal opportunities to learn. Would you like to say something on that ??
@@Raju_Sharma852 If we take CSE it doesn't matter which language we know or not we should try our level best to understand english . And as we are not english speaker by birth so we should listen English lecture to increase our English vocabulary power.....
@@Raju_Sharma852 There are plenty of other channels that teach in Hindi, let them watch those.
@Razeen Asief Then why don't our South Indian brothers and sisters upload video on such topics ( JEE, UPSC, Programming etc) when cities like Bangalore and Hyderabad is the hub of technology/tech industries ??
Damn these people are arguing over a language like seriously 🤦
Mam I have done my exam but I didn't prepare for it so I watched your lecture but I forgot to do this before my exam at 12 pm to 2pm and I watched our lecture at 4pm for preparation for exam and the fun fact is I got 99.98% without preparation 😅🙃🙂😄 thanks for helping me to optimize LEGACY GEN10 for exam logic and preparation.
Be single and an stay 💯😌 motivated because after relationship you can't be motivated you only distracted 💯🤧😌🤷
Janhit main Jari,
Ladki padhaegi padhai pe distraction ki bahari
your videos have been very helpful to me as a student and i have gained confidence to as well anytime i write a C program. Thank you for your dedication in making these videos
Thanku so much mam
Because of you now I am getting this concept
You are a wonderful teacher
when i am learning java frames, than why i am here 😁😁😁
Just to support you mam , i still remember dsa and myself before 2 days before exam
thanks for videos 💖💖💖
thankyou so much just because of you i am able to learn and understand this topic so easily.
☺☺thankyou mam for your this initiative.
Declare an char array in main function and pass it to a function and initialize the array inside an function. Print the string in main function
Hi Mam, Thank You for all your lectures it is very help full for me 🤗
what a successful and lovely trainer you are ! thank you for video:)
ruclips.net/video/hhIHnxkOz2s/видео.html
Thanks for Ur outstanding speech about reference type❤
you are a stunner mam, your videos are literally the best.
You teach depth concept and teaching way is very well?
In reality c is being used very rarely in organization , Java is being used widely
Those who don't like coding can choose automation testing (20% coding only )
ruclips.net/video/hhIHnxkOz2s/видео.html
You are VERY wrong when you say C is used rarely in organization. MANY of the top BIG organizations use C. Do research and you will see C is one of the most used languages especially for backend programming since it is so fast.
thank yu mam ji so beautiful lecture for us 🥰🥰😍😍😍
Hi. If we are passing address by call by reference method, then why we are not entering asterisk symbol in function definition. Simply int avg (int *marks[], int a)
Thanks Jeny,, You are a real inspiration
Nice to see you Mam again. Thanks for come back 🙏
Good afternoon mam. 🙏
Good afternoon 🌝
Super explanation mam you are best 👍 stunning explanation 💕
Y u r so beautiful.my exams r over but still i m watching u means this video lecture
ma'am please can you make one video for read and display 2D array using function
MAM, I AM FROM #BANGLADESH.Very first time i didn't understand your lecture
ruclips.net/video/hhIHnxkOz2s/видео.html
Superoo superobhya superosyaha....👏👌
And that word "fine" in between the explanation is so cute. When I'm explaing the vdo's of u to my friends, unfortunately, I'm also pronouncing "fine" and "Ok" as like u..!!
Mam your voice is sweet as you are ☺️
Create telegram channel plz and post class pdf in telegram channel ..
Hard-working u mam💯💯💯💯
Thank you very much mam 👏👏
Hi, whenever the base address of an array is transferred as an argument to the function then during the function declaration is it not required to dereference the pointer? Otherwise how we get the value at that address? Like as u did in marks [ ]. So, is it not required to dereference the pointer in order to access the value?
Madam I need your suggestion regarding my career
I just have completed my 12th standard and I learn c language from a well known institute of my locality
Which course should I start next other python or java or any other please suggest me some good course
ruclips.net/video/hhIHnxkOz2s/видео.html
Ma'am please take lecture on recursion in c.
Waiting for topic.
Hello mam, here for array in definition part, when we r getting address of the 0th index of the variable, we didn't add * in definition function, but in case of string we added * in definition function, why? String is also an array, so why it has different rule? If u answer then it will be very helpful for me, I'm confused with it.
Mam can you explain this topic as a user defined function so that I can understand well because all topics covered by seeing your RUclips lecture of c
thank u mam 😇😇😇 ur truly an amazing teacher
Maam will you please do it
Write a c program using function in which there will be two arrays of different lengths and 1 element of one array will be added with every element of the other array
update: In a 32-bit system, a pointer is typically 4 bytes, and in a 64-bit system, a pointer is usually 8 bytes.
Thanks you Maam , You are too good 😊
Mam please upload video related to file handling in c
Mam plz make videos on full Java 🙏
Thank you mam you doing great work.
Started python course
3 months later, how is it going?
Please make video on topic where both argument and returning value is array of string data type.l am getting a lot of errors while doing so.
cant we write int avg(int marks[10]) in place of int avg(int marks[ ], int size ) if i know that only 10 elements i need to pass?
mam you are so beautiful stay blesses and always be happy ..🙃
😭😭y don't I get a teacher like you mam
ruclips.net/video/hhIHnxkOz2s/видео.html
Maam plzz upload topic structure and union in c and file handling in c. Asap 🙏🙏🙏🙏🙏🙏🙏🙏🙏
When mam looks in the camera it actually feels like she is watching us and i got scared 🤣🤣🤣
Thanks mam your vidio is very helpful 👍👍
ruclips.net/video/hhIHnxkOz2s/видео.html
Suppose students marks are in tabulated form in a file the how to access as a array and pass it an argument? Or in excel.
NICE SUPER EXCELLENT MOTIVATED
Thanks for your efforts
Hello madam
Could you pls explain about file handling techniques in C lang 🙂🙂
ruclips.net/video/hhIHnxkOz2s/видео.html
Mam please replay me
Which one is better B Tech cse from normal private college vs BCA from government autonomous college ??????
Mam I can't understand the call by reference in passing array to function
Ma'am would u take class about Array, Structure, and Union. You have already taken the class about Pointer right? Other 3 derived data types are still left. We need those topics also.. Plz ma'am .. Waiting for that.. Thank you 😊
ruclips.net/video/hhIHnxkOz2s/видео.html
Or aapne kaise sikha ye sab ye bhi bta do please mera bhi mn bhut kr raha h sikhne ka please reply Krna
my output:
inside avg function size of array is(in bytes):8
average=30
inside main sizeof array is (in bytes):20
how is this possible size of a single element is 8, but why the size of the array is 20. Please anyone explain this contradiction.
If we perform above code in a 64 bit system will size come as output???
ma'am in one video you said that you will provide notes please provide notes
Awesome teach mam 👏
I got 8 bytes size of array in avg function what is the reason
#include
int avg(int[],int);
void main()
{
int average,size;
int marks[5]= {10,15,20,30,45};
size=sizeof(marks)/sizeof(marks[0]);
average=avg(marks,size);
printf("Average is %d
",average);
printf("Size of array (inside main) is %d
",sizeof(marks));
printf("Size is %d
",size);
}
int avg(int marks1[],int size)
{
int i, sum=0, average=0;
for(i=0; i
In a 32-bit system, a pointer is typically 4 bytes, and in a 64-bit system, a pointer is usually 8 bytes.
thanks Miss
thank you so much mam😊😊
Skip 1:07 to 2:42
Why use void main here if we are returning some value
python or java which one I choose for placements
Madam ,Please provide videos for c++ also
hello madam in my compiler the size of array in avg function, it giving result 8bytes. how
Thanks mam good seasion
thank you soo much mam
Mam please make some video in c ++
This is a very tough concept 😢
dear madam,
how to pass palindrome to new array...?
can u solve this program mam? I am finding difficult in this program.
thank u.
Thank you madam
Ma'am aapko c,,, c++,,,,,, pythan etc. Language aati h or english bhi achii h aap koi application bnaye ho kya
Waiting...For your video...
Mam pls teach java programming as like this c programming
ruclips.net/video/hhIHnxkOz2s/видео.html
I GOT IT OMG
Ma'am coding ke liye best app btaiye
thanks mam
Hi,i have question what is the difference between (int main)and(void main)?
Its return type of function
Means. Void it returning nothing
Int. It returning integer value.
Similarly. for other data type return type
ruclips.net/video/hhIHnxkOz2s/видео.html
super mam g u r best mam
thank u so much mam g
Mam Can you teach BCA students also
ruclips.net/video/hhIHnxkOz2s/видео.html
@@plcsd thanks sir 🙏
Yes we goat this!
Nice 👍
ruclips.net/video/hhIHnxkOz2s/видео.html
Mam how many videos could be all
Mam array explain in tamil meaning English pls comment mam helpful for me
looking cute as always.......😊❤️
If you write the following program:-
---------------------------------------------------------------
void getArraySize(int arr[]){
int len = (sizeof(arr)/sizeof(arr[0])
printf("Array Length:%d
",len);
}
int main(){
int array[] = {1,2,3,4,5};
getArraySize(array);
return 0;
}
----------------------------------------------------------------
You'll get this warning.
- sizeof on array function parameter will return
size of 'int *' instead of 'int []' [-Wsizeof-array-argument] -
---------------------------------------------------------------
This is because:-
The array decays to a pointer when passed.
So sizeof only works to find the length of the array if you apply it to the **original array**.
So you need to **pass length of array as separate argument to function**.
favourite if you have finals tomorrow 🌚
mam bhut ho gai c ...now plz start c++,java,python....oops concept etc.
inside the marks function my marks size is showing 8 bytes
May be due to compiler
Can you teach Python Madam.
Right
mam we need notes for c
your smile kills thousands of handsome enemy 😎
I don't know why its showing 8 byte instead of 4 or 2 byte .
#include
int func(int[]);
int main()
{
int arr[]={1,2,3,4,5};
printf("inside main: %d
",sizeof(arr));
func(arr);
}
int func(int arr1[])
{
printf("inside func: %d
",sizeof(arr1));
}
96th video
Your my crush ma'am 😘
Mam ek bar aur bata dejiye
Hi mam
Maam use hindi also while explaining 🙏🙏🙏
ruclips.net/video/hhIHnxkOz2s/видео.html
If miss speak in hindi then how students from non hindi speaking states will understand what miss is saying ?
Run this codemam