At first , i ignored your videos . Because i thought you makes to divert from the subject to you . But after listening to your class , I'm impressed with both .
I am learning java I was stuck with this problem on java because I was unable to understand the working of the sum matrix and as always you cleared my doubt thank you so much ma'am program may be different but logic and working is same
@@nishasharma8752 if you are complete beginner then learn from Harry his channel name is code with Harry and teaching language is Hindi but if you want to learn Java along with DSA then there is a channel called Kunal khuswaha just go there and see the Java playlist it is one of the best course for java and DSA but the language he follows is English so yaa 1 Code with Harry 2 Kunal Khuswaha
Hi jenny before you write the logic for addition of 2 matrixes & sum of rows and column in white board, I tried out from my end oh my god😱 I can be able to write the logic and completely match with your code. All the credits to you hats of you👏
Mam thanks a lot for teaching When I am getting to solve transpoese of matrix I can't do that properly but this addition program I have get properly without any single error thanks a lot
I was a MA student working in IT company i was thinking to do BCA saw your video on youtube you have reminded me my chemistry teacher for her I have taken science in 12th and now for you taking admission in BCA no offence you are a great teacher and you look beautiful 😍 after watching your video i took admission in BCA so that i can watch you regularly
Hello mam in multiplication of a matrix we cannot multiply two matrices if they have different order then in addition of matrices ,can we add them by default values or considering them as zero
#include //W.A.P to add two matrix in 2-d array int main(){ int a[2][3]={1,1,1,1,1,1}; int b[2][3]={1,1,1,1,1,1}; int sum[2][3]; int i,j; printf("Enter elements of first matrix "); for ( i = 0; i < 2; i++) { for ( j = 0; j < 3; j++) { scanf("%d",&a[i][j]); } } printf("first matrix: "); for ( i = 0; i < 2; i++) { for ( j = 0; j < 3; j++) { printf("%d\t",a[i][j]); } printf(" "); } printf("Enter elements of second matrix "); for ( i = 0; i < 2; i++) { for ( j = 0; j < 3; j++) { scanf("%d",&b[i][j]); } } printf("Second matrix: "); for ( i = 0; i < 2; i++) { for ( j = 0; j < 3; j++) { printf("%d\t",b[i][j]); } printf(" "); } for ( i = 0; i < 2; i++) { for ( j = 0; j < 3; j++) { sum[i][j]=a[i][j]+b[i][j]; } } printf("Sum of two matrix: "); for ( i = 0; i < 2; i++) { for ( j = 0; j < 3; j++) { printf("%d\t",sum[i][j]); } printf(" "); }
The answer of above question is how i tryed. #include int main(){ int arr1[2][3]; int arr2[2][3]; int arr3[2][3]; printf("Enter value of array 1 "); for(int i=0;i
@@Abhishekkumar-rl8ju Brother, I have completed the whole lecture after then I have commented. Here I mentioned the beauty which is her teaching methodology.
At first , i ignored your videos . Because i thought you makes to divert from the subject to you . But after listening to your class , I'm impressed with both .
😂😂
Simper
😁
🤣🤣🤣
😂😂💀
I am learning java I was stuck with this problem on java because I was unable to understand the working of the sum matrix and as always you cleared my doubt thank you so much ma'am program may be different but logic and working is same
Can you tell me which channel you prefer for learning Java
@@nishasharma8752 if you are complete beginner then learn from Harry his channel name is code with Harry and teaching language is Hindi but if you want to learn Java along with DSA then there is a channel called Kunal khuswaha just go there and see the Java playlist it is one of the best course for java and DSA but the language he follows is English so yaa
1 Code with Harry
2 Kunal Khuswaha
C[i][j] this take more size, but in c++ we can direct take cout
nerd
Literally waiting for your today's video.
I am learning C language through your videos.
🙏🏻🙏🏻👍🏻
Hey do you have notes of her videos??
Hi jenny before you write the logic for addition of 2 matrixes & sum of rows and column in white board, I tried out from my end oh my god😱 I can be able to write the logic and completely match with your code. All the credits to you hats of you👏
Mam plz start making video on python playlist🙏
Yes, we really need it
It will after c
Yes mam
No
Pahle hamko c seekne dho
Thank you very much. You are a genius. 👍👍🔝🔝🙏🙏
Big Fan From Srilanka Maam💘
your Explanation is Cristal clear
Congratulations 🎉🎉🎉 Ma'am.
We've completed 500k family 🤗😍
Yah mam I have tried this program
I got the output correct . 👍🏻👍🏻🙏🏻
Thnks mam. 👍🏻😁😉
what is the difference between int main() and void main() and int main(void) and main() in c language?
Mam this topic is fixed in my mind nice teaching ❤😊😊
BEAUTY WITH LEARNING
1:37 Lecture Started
Thanks akka I will tried this program 😍😍
Best explanation Jenny ma'am ❤ @jenny lecture
I thought It very complicated but you just teaching very easily I can't believe. It I understood the coding thanks a lot and lot .....
Hii ,Jenny maam. I am from bengal. Your tutorials for c programing are very helpful for me.
Muchas gracias por la exposición de la suma de matrices en C. Saludos desde Puno - Perú.
Beautiful explanation ❤❤❤❤
Great teacher,inspiring,interesting...and if i'm being honest, I kinda like your smile😁.From kenya 🇰🇪
Firstly i thought that you only have face value then i started listening to the lectures mam you do have a face value with infinity brain value
Madam after completion of arrays. Could you please start " strings " topic ?
yes man
"KUMNAV GATE CSE" UA-cam channel for CSE/IT subjects
Thank you and love you ma'am💖💖
U r class are excelent. I cant express tgrough my words.Madam... Function topic video plz uplod.
Mam thanks a lot for teaching
When I am getting to solve transpoese of matrix I can't do that properly but this addition program I have get properly without any single error thanks a lot
Mam plz upload other topic too as much as fast you can my exam is coming that's why.. plzz mam ..your videos helping me too much❤✌
you can try getch(); (you have to use #include)
Thank you mam 😀great explaination .
Mam teaching skills are excellent and you also ❤
thanks you so much myam lots of love from NEPAL
Which edition of Visual Studio to use. And also which extensions and how to install them within Visual Studio. Please tell me.
Thank you so much ❤
Thank you mam you are teaching super I am understand to listen to your teaching
What type of compiler is best for all Languages
Mam please make videos on python. It's very confusing after learning c
I was a MA student working in IT company i was thinking to do BCA saw your video on youtube you have reminded me my chemistry teacher for her I have taken science in 12th and now for you taking admission in BCA no offence you are a great teacher and you look beautiful 😍 after watching your video i took admission in BCA so that i can watch you regularly
Looking beautiful in this dress mam😍
I have a doubt...Madam u haven't used scanf in this program... without using the scanf how the program can be read....
thanks mam you do not know how helpfull this vedio is thanks a lot mam
Hello mam in multiplication of a matrix we cannot multiply two matrices if they have different order then in addition of matrices ,can we add them by default values or considering them as zero
Love u mam .. Love ur teaching also😍😍♥️🤗
If i wnat enter manually..the rows and columns of 1st and 2md matrix then how...??
Mam which editor should we use to execute C language
First of all Ma'am, you're so beautiful
And thank you so much for this video
#include
//W.A.P to add two matrix in 2-d array
int main(){
int a[2][3]={1,1,1,1,1,1};
int b[2][3]={1,1,1,1,1,1};
int sum[2][3];
int i,j;
printf("Enter elements of first matrix
");
for ( i = 0; i < 2; i++)
{
for ( j = 0; j < 3; j++)
{
scanf("%d",&a[i][j]);
}
}
printf("first matrix:
");
for ( i = 0; i < 2; i++)
{
for ( j = 0; j < 3; j++)
{
printf("%d\t",a[i][j]);
}
printf("
");
}
printf("Enter elements of second matrix
");
for ( i = 0; i < 2; i++)
{
for ( j = 0; j < 3; j++)
{
scanf("%d",&b[i][j]);
}
}
printf("Second matrix:
");
for ( i = 0; i < 2; i++)
{
for ( j = 0; j < 3; j++)
{
printf("%d\t",b[i][j]);
}
printf("
");
}
for ( i = 0; i < 2; i++)
{
for ( j = 0; j < 3; j++)
{
sum[i][j]=a[i][j]+b[i][j];
}
}
printf("Sum of two matrix:
");
for ( i = 0; i < 2; i++)
{
for ( j = 0; j < 3; j++)
{
printf("%d\t",sum[i][j]);
}
printf("
");
}
return 0;
}
The answer of above question is how i tryed.
#include
int main(){
int arr1[2][3];
int arr2[2][3];
int arr3[2][3];
printf("Enter value of array 1
");
for(int i=0;i
Didn't declare i and j, u ll get error
@@Sreychoreophile he declared them inside for loops
He declared inside of for loop... That is int i=0, int j=0
Thank you ma'am 🙏
I like the way of explanation ❤️
mam y cant we write the print f to enter the values of matrix a and b in the for loop above scanf????
Thanks for good explanation
Tq mam 🙏
Ur spoken english was awesome
Thanks mam for good lecture.
18:52
Mam after complete the arrays could you please start "function in c"
6:54 we can't see the bord 😢😢 on last lines
Lecture starts at 1:36
Thanks teacher
what is meant by codechef, codeverses and leet code ?? Please ma'am. please reply 🙏🙏 . Do one video on explaining these differences ma'am.
Sir.... By the way she is Ma'am. Lol
these are Online platform where you can practice coding , even competitive coding.
Mam, I use turboc3 but what do you use for running programming
Why did you use \t and
kindly explain me
Ma'am for 3×3 same program is there ?
please start web technologies, UMI and Design patterns,data warehousing and data mining and distributed systems .
A question to you madam what if we want to first enter the no of rows and columns and then add the matrix ?
Mam. Plse upload oops concepts in java series.. it's very important for placement. 🙏
What anyone can tell me best platform for c++ language as Jenny Ma'am.
Aaye haaye din be din khubsurti badhti jaa rhi hai 🤭😉
It's very good explanation mam thank you
Assignment: Subtraction of two matrix:
#include
void main ()
{
int a[2][3],b[2][3],c[2][3],i,j;
printf("Enter elements of first matrix:
");
for(i=0;i
mam aap pdhate h to humlog ko
pdhne m bhi mn lgta hai
Thanks you mam good teaching
Mam tnx a lot..Mam if I take different variable in b like b[k][|]..it will work no...? I mean it will be not a pblm of using same i ,j in 3 matrix
Nice explain 👌👌
Thanks
To compile and run C program on Mobile ..use Student C Lab App on Playstore
Thank you sooo much
Thank you so much mam
Ma'am, You're getting too much beautiful day by day.
thank you
Bhai white board mam se bhi sundar hai kabhi us pr bhi dekh Liya kro 😂😂😂
@@Abhishekkumar-rl8ju Brother, I have completed the whole lecture after then I have commented. Here I mentioned the beauty which is her teaching methodology.
@@robinncode thank you
Hello mam , is this the first lacture of c ?
Thanks alot mam
good explained .
superb maam
Mam i like youtube without tube 😊❤
I love uhhh mammm ❤️❤️❤️❤️❤️❤️❤️
Thank you didi
Thank you mam
First comment
Very helpful...
Bavunnav 🌈💫
Great
Mam can u please conduct live class on UA-cam for competitive programming please mam
Mam plz tell mi the logic of this pattern
Python programming please 😊
Ma'am competitive programming start kijiye na ye sab toh sabko aata hai
Pls mam upload the remaining explanation parts of C programming bcz we are going to have exams soon
I visit this channel just to see her after watching the same tutorial from harry............
Mam,we completed c sem end exam. But ur vids were uploaded lately
Mam, do some vids in python
Matrix ka use ka krte hai
I didnt understand anything but i still watched full video mam🥰
Super madam
Code bhi provide krao mam