Тёмный

C_59 Program to add Two Matrix in C | C language tutorials 

Jenny's Lectures CS IT
Подписаться 1,7 млн
Просмотров 301 тыс.
50% 1

Опубликовано:

 

20 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 213   
@karthik33679
@karthik33679 2 года назад
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 .
@lowercaseguydev5333
@lowercaseguydev5333 11 месяцев назад
😂😂
@1nonlysahil737
@1nonlysahil737 10 месяцев назад
Simper
@syedabuzar3553
@syedabuzar3553 9 месяцев назад
😁
@FUNTIME_THEE
@FUNTIME_THEE 7 месяцев назад
🤣🤣🤣
@Anirudh.247
@Anirudh.247 6 месяцев назад
😂😂💀
@PawanKumar-jk1yy
@PawanKumar-jk1yy 2 года назад
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
@nishasharma8752 2 года назад
Can you tell me which channel you prefer for learning Java
@PawanKumar-jk1yy
@PawanKumar-jk1yy 2 года назад
@@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
@sairampolisetty2059
@sairampolisetty2059 3 года назад
Literally waiting for your today's video. I am learning C language through your videos. 🙏🏻🙏🏻👍🏻
@mdmazinkhurshid8811
@mdmazinkhurshid8811 2 года назад
Hey do you have notes of her videos??
@RTBOSS
@RTBOSS 3 года назад
C[i][j] this take more size, but in c++ we can direct take cout
@siddhantsingh42
@siddhantsingh42 3 года назад
nerd
@aakashjha765
@aakashjha765 3 года назад
Mam plz start making video on python playlist🙏
@shubhambhatt2704
@shubhambhatt2704 3 года назад
Yes, we really need it
@chethii_rathalu
@chethii_rathalu 3 года назад
It will after c
@katamabhishek8844
@katamabhishek8844 3 года назад
Yes mam
@adss5095
@adss5095 2 года назад
No
@vinaynani4829
@vinaynani4829 2 года назад
Pahle hamko c seekne dho
@nishasiddu5487
@nishasiddu5487 Месяц назад
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👏
@mercymadhuri9626
@mercymadhuri9626 2 года назад
what is the difference between int main() and void main() and int main(void) and main() in c language?
@arpitbajpai7051
@arpitbajpai7051 3 года назад
Congratulations 🎉🎉🎉 Ma'am. We've completed 500k family 🤗😍
@vakhariyajay2224
@vakhariyajay2224 2 года назад
Thank you very much. You are a genius. 👍👍🔝🔝🙏🙏
@mohamedashik5374
@mohamedashik5374 2 года назад
Big Fan From Srilanka Maam💘 your Explanation is Cristal clear
@kuberravat
@kuberravat 3 года назад
BEAUTY WITH LEARNING
@shivasentartainment4273
@shivasentartainment4273 3 года назад
Madam after completion of arrays. Could you please start " strings " topic ?
@741ibrahim2
@741ibrahim2 3 года назад
yes man
@kumudranjan1467
@kumudranjan1467 3 года назад
"KUMNAV GATE CSE" RU-vid channel for CSE/IT subjects
@sairampolisetty2059
@sairampolisetty2059 3 года назад
Yah mam I have tried this program I got the output correct . 👍🏻👍🏻🙏🏻 Thnks mam. 👍🏻😁😉
@shubhambhatt2704
@shubhambhatt2704 3 года назад
Mam please make videos on python. It's very confusing after learning c
@adolfocanahuirecondori195
@adolfocanahuirecondori195 2 года назад
Muchas gracias por la exposición de la suma de matrices en C. Saludos desde Puno - Perú.
@pawanmittal8056
@pawanmittal8056 Год назад
#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; }
@vlogsforu3868
@vlogsforu3868 2 года назад
Mam this topic is fixed in my mind nice teaching ❤😊😊
@rabinchy9155
@rabinchy9155 3 года назад
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❤✌
@pratikhyapadhi394
@pratikhyapadhi394 Год назад
you can try getch(); (you have to use #include)
@SAQLAINQUADRIALKAZMI
@SAQLAINQUADRIALKAZMI 3 месяца назад
Best explanation Jenny ma'am ❤ @jenny lecture
@luckycollectionmeesho1617
@luckycollectionmeesho1617 2 года назад
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 .....
@NIKHIL-ly1df
@NIKHIL-ly1df 4 месяца назад
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
@anujeetkunturkar780
@anujeetkunturkar780 3 года назад
1:37 Lecture Started
@subhankarkanrar9494
@subhankarkanrar9494 Год назад
Hii ,Jenny maam. I am from bengal. Your tutorials for c programing are very helpful for me.
@ushabuti7076
@ushabuti7076 Год назад
I have a doubt...Madam u haven't used scanf in this program... without using the scanf how the program can be read....
@srinathsiri7078
@srinathsiri7078 Год назад
Looking beautiful in this dress mam😍
@aravinthaji96
@aravinthaji96 3 года назад
Thanks akka I will tried this program 😍😍
@user-nk6ly8er2d
@user-nk6ly8er2d 3 года назад
U r class are excelent. I cant express tgrough my words.Madam... Function topic video plz uplod.
@shivapandey5996
@shivapandey5996 2 года назад
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
@Sreychoreophile
@Sreychoreophile 4 месяца назад
Didn't declare i and j, u ll get error
@lalalili3798
@lalalili3798 Месяц назад
@@Sreychoreophile he declared them inside for loops
@yogithavegi4826
@yogithavegi4826 11 дней назад
He declared inside of for loop... That is int i=0, int j=0
@Fuckyard7_
@Fuckyard7_ 9 месяцев назад
Just because of u mam😍
@twinspark1019
@twinspark1019 3 года назад
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
@rifihari8705
@rifihari8705 3 года назад
Mam. Plse upload oops concepts in java series.. it's very important for placement. 🙏
@swamulugaday4839
@swamulugaday4839 3 года назад
please start web technologies, UMI and Design patterns,data warehousing and data mining and distributed systems .
@JosephL-g3m
@JosephL-g3m 3 года назад
Thank you mam you are teaching super I am understand to listen to your teaching
@swamulugaday4839
@swamulugaday4839 3 года назад
what is meant by codechef, codeverses and leet code ?? Please ma'am. please reply 🙏🙏 . Do one video on explaining these differences ma'am.
@RTBOSS
@RTBOSS 3 года назад
Sir.... By the way she is Ma'am. Lol
@anshulsingh1265
@anshulsingh1265 3 года назад
these are Online platform where you can practice coding , even competitive coding.
@pranavpatil9403
@pranavpatil9403 2 года назад
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
@wamangawande3200
@wamangawande3200 3 года назад
Mam after complete the arrays could you please start "function in c"
@yourworldandmine7369
@yourworldandmine7369 Год назад
Great teacher,inspiring,interesting...and if i'm being honest, I kinda like your smile😁.From kenya 🇰🇪
@maheshadsul6856
@maheshadsul6856 3 года назад
Which edition of Visual Studio to use. And also which extensions and how to install them within Visual Studio. Please tell me.
@abdulrahimjalloh363
@abdulrahimjalloh363 Год назад
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
@himanisain7738
@himanisain7738 2 года назад
Thank you mam 😀great explaination .
@ajju3236
@ajju3236 3 года назад
Thank you and love you ma'am💖💖
@izel_5
@izel_5 Год назад
Thank you so much ❤
@sudheerarigela8202
@sudheerarigela8202 3 года назад
Mam,we completed c sem end exam. But ur vids were uploaded lately
@sudheerarigela8202
@sudheerarigela8202 3 года назад
Mam, do some vids in python
@Udaykumar-tn6wi
@Udaykumar-tn6wi Год назад
What type of compiler is best for all Languages
@chandanchoudhary349
@chandanchoudhary349 3 года назад
Mam can u please conduct live class on RU-vid for competitive programming please mam
@AmpallaSravanthi-CM-
@AmpallaSravanthi-CM- 3 года назад
Pls mam upload the remaining explanation parts of C programming bcz we are going to have exams soon
@ajaykumarnuthakki3555
@ajaykumarnuthakki3555 3 года назад
To compile and run C program on Mobile ..use Student C Lab App on Playstore
@M1xngaming001
@M1xngaming001 2 месяца назад
6:54 we can't see the bord 😢😢 on last lines
@korrapatigeetesh3768
@korrapatigeetesh3768 9 месяцев назад
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
@arunimamurali8364
@arunimamurali8364 Год назад
A question to you madam what if we want to first enter the no of rows and columns and then add the matrix ?
@Real13822
@Real13822 5 месяцев назад
First of all Ma'am, you're so beautiful And thank you so much for this video
@mrinalummadising
@mrinalummadising 2 года назад
Mam which editor should we use to execute C language
@itsdeepak6609
@itsdeepak6609 2 месяца назад
mam aap pdhate h to humlog ko pdhne m bhi mn lgta hai
@arunPrakash-w5k
@arunPrakash-w5k 9 месяцев назад
Mam teaching skills are excellent and you also ❤
@DataScience_Learn
@DataScience_Learn 3 года назад
Python programming please 😊
@paradox9295
@paradox9295 2 года назад
Thanks mam for good lecture.
@bishworld1627
@bishworld1627 2 года назад
thanks you so much myam lots of love from NEPAL
@thedailywinks2993
@thedailywinks2993 3 года назад
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
@ayushraj1784
@ayushraj1784 Год назад
thanks mam you do not know how helpfull this vedio is thanks a lot mam
@mohammedwaseem8599
@mohammedwaseem8599 3 года назад
Mam You Looks Like Sahi.
@dhirajjamdhade7499
@dhirajjamdhade7499 3 года назад
Mam plz tell mi the logic of this pattern
@Abdirizakmrashid
@Abdirizakmrashid 2 года назад
Thanks teacher
@RTBOSS
@RTBOSS 3 года назад
Thank you ma'am 🙏
@sabyasachisingha5996
@sabyasachisingha5996 11 месяцев назад
If i wnat enter manually..the rows and columns of 1st and 2md matrix then how...??
@fitness11257
@fitness11257 3 года назад
Ma'am competitive programming start kijiye na ye sab toh sabko aata hai
@gagandhyani
@gagandhyani 3 года назад
Mam Please include saddle point program in upcoming videos 🙂
@abhishamb
@abhishamb Год назад
mam y cant we write the print f to enter the values of matrix a and b in the for loop above scanf????
@siyyadrihari5772
@siyyadrihari5772 2 года назад
I like the way of explanation ❤️
@meghasinha1706
@meghasinha1706 3 года назад
It's very good explanation mam thank you
@srinathsiri7078
@srinathsiri7078 Год назад
Thanks for good explanation
@vbhanusai7266
@vbhanusai7266 2 года назад
Love u mam .. Love ur teaching also😍😍♥️🤗
@nishasharma8752
@nishasharma8752 2 года назад
What anyone can tell me best platform for c++ language as Jenny Ma'am.
@itsjaya1845
@itsjaya1845 2 года назад
Mam, I use turboc3 but what do you use for running programming
@jaylog8626
@jaylog8626 3 года назад
Ur spoken english was awesome
@ashishtirthkar3581
@ashishtirthkar3581 Год назад
second matrix me 07 Number aa rahe he or first matrix me 06 Number aa rahe aisa kyu.....lekin ans to correct aa raha he
@sarswatisharma001
@sarswatisharma001 Год назад
Code bhi provide krao mam
@surmalaheisnam8109
@surmalaheisnam8109 2 года назад
Why did you use \t and kindly explain me
@subhanuddinsubhan699
@subhanuddinsubhan699 3 года назад
Hello mam , is this the first lacture of c ?
@naughtyrana4591
@naughtyrana4591 3 года назад
Aaye haaye din be din khubsurti badhti jaa rhi hai 🤭😉
@robinncode
@robinncode 3 года назад
Ma'am, You're getting too much beautiful day by day.
@siddhantsingh42
@siddhantsingh42 3 года назад
thank you
@Abhishekkumar-rl8ju
@Abhishekkumar-rl8ju 3 года назад
Bhai white board mam se bhi sundar hai kabhi us pr bhi dekh Liya kro 😂😂😂
@robinncode
@robinncode 3 года назад
@@Abhishekkumar-rl8ju Brother, I have completed the whole lecture after then I have commented. Here I mentioned the beauty which is her teaching methodology.
@siddhantsingh42
@siddhantsingh42 3 года назад
​@@robinncode thank you
@AdityaGupta-bv7cw
@AdityaGupta-bv7cw Год назад
Thanks
@rani6029
@rani6029 2 года назад
Thanks you mam good teaching
@dibyendu486
@dibyendu486 Год назад
ASSIGNMENT: #include #include #define N 2 #define M 3 int main() { int a[N][M],b[M][N],c[N][M],i,j; printf("enter the 1st Matrix : "); //take 1st matrix for(i=0;i
@anujkumarjha4169
@anujkumarjha4169 3 месяца назад
Thank you didi
@rajeshkushwaha7638
@rajeshkushwaha7638 3 года назад
please start java class with basic concept it will be helpful....................................................
@pranaypawar8255
@pranaypawar8255 2 года назад
18:52
@anakhan4131
@anakhan4131 2 года назад
Ma'am for 3×3 same program is there ?
@u9.m_ayaann
@u9.m_ayaann Год назад
Mam i like youtube without tube 😊❤
@sujanparajuli1963
@sujanparajuli1963 2 года назад
I visit this channel just to see her after watching the same tutorial from harry............
@muttu05rbk
@muttu05rbk 3 года назад
Thank you sooo much
@shivamprajapati4253
@shivamprajapati4253 Год назад
Great
@vijaybakshi8888
@vijaybakshi8888 2 года назад
good explained .
@mallikakadiyam7777
@mallikakadiyam7777 Год назад
Thank you so much mam
@gskerbecs9513
@gskerbecs9513 8 месяцев назад
Thanks alot mam
@vujvvuc7673
@vujvvuc7673 2 года назад
Lecture starts at 1:36
@raushanraj6252
@raushanraj6252 3 года назад
assignment only change sign mam ...
@tanishasahoo5579
@tanishasahoo5579 Год назад
Tq mam 🙏
@rpk1066
@rpk1066 Год назад
Very helpful...
@supravobiswas
@supravobiswas 3 года назад
Mam how I improve my coding in Java
@anjalithandra650
@anjalithandra650 2 года назад
Madam its not visible please write thick
Далее
Introduction to Two-Dimensional (2D) Arrays
10:20
Просмотров 692 тыс.
Bike Vs Tricycle Fast Challenge
00:43
Просмотров 50 млн
C_62 Strings in C - part 1 | C programming tutorials
15:41
Pixtral is REALLY Good - Open-Source Vision Model
11:15
Addition of Two Matrix in C
9:06
Просмотров 143 тыс.
C_43 Need of Nested Loops in C | Nested For loop in C
18:31
C_53 Introduction to Two Dimensional (2D) Arrays in C
13:04
C_46 Arrays in C - part 1 | Introduction to Arrays
18:19
C41 - Program to add two matrix using simple method
8:58
C_37 While Loop in C (part-1) | C Language Tutorials
12:21