THANK YOU SIR ...respect form MEGHNAD SAHA INSTITUTE OF TECHNOLOGY.(KOLKATA).
@parth74505 жыл бұрын
Sir you are very hardworking. My best wishes are with you thanks a lot
@want87182 жыл бұрын
Super... Sir.. Well explained...... I gain some knowledge from ur video... Tq sir...
@arshpr__t Жыл бұрын
It is very helpful👍🏻👍🏻
@Cslover-j4z Жыл бұрын
You are like as doctor❤❤
@gamingdas3962 жыл бұрын
Helpful video
@deepapokhalekar79324 жыл бұрын
superb explanation sir
@kousalyad96973 жыл бұрын
Gud explaination nd easy to understand sir ..thank u sir
@prensudangol15472 жыл бұрын
sir you are great
@enriquethomasjoseph44082 жыл бұрын
Thank you sir for making this difficult program so easy.
@subhamagarwal85545 жыл бұрын
In 2nd part of program sir you could use For(i=0;i
@rimjhimshukla-17985 жыл бұрын
Very good sir keep teaching
@krishnakc21965 жыл бұрын
sir what about the opposite diagonal element
@aswins85326 жыл бұрын
Sir I can understand your teaching , your really great😎😎😘
@rajavelu539 Жыл бұрын
😘🥰😍
@13kaviya.g513 жыл бұрын
Tq sir... Very useful video... 🤝
@sujitsah72234 жыл бұрын
1st program---- #include int main() { int arr[10][10],rowsize,colsize,sum=0,i,j; printf("enter rowsize :"); scanf("%d", & rowsize); printf("enter colsize :"); scanf("%d", & colsize); printf("enter %d elements :",rowsize*colsize); //In 2D array total no. of elements = rows*columns =i*j ..... for(i=0;i
@sujathar10972 жыл бұрын
Thank you brioooo
@giaotran69106 жыл бұрын
Hi sir I ran your program and it did not work. However, when I take out the scanf and the two nested for loops for scanf, and declare the A matrix from 1-9; it works. How do I get input from user instead of having one fixed matrix?
@piiaall6 жыл бұрын
nice explanation,,,thanks
@jatinukey40623 жыл бұрын
👍👍👍👍
@rikeshshrestha6664 жыл бұрын
Thank you sooo much sir!
@JerSem3 жыл бұрын
there is a way to do this in recursion? good video!
@Safal_here2 жыл бұрын
if you take 3 matrix element [3]={0,1,2,3} or {1,2,3,4}
@puttapallisatishyadav2223 жыл бұрын
Sir.. I think in second part it should be i
@SanaSana-hg3cr5 жыл бұрын
Thanks sir very nice video
@surajpatil66236 жыл бұрын
Sir, what is program about second diagonal of matrix
@ronnygamerz883 жыл бұрын
Yes i want it too both side diagonal.
@sanakhan-mo6vl6 жыл бұрын
thanku you are so cute as c++ programming
@sundeepsaradhi6 жыл бұрын
Hi sana khan thanks for watching my sessions and supporting our channel.
@upendarreddymusuku88784 жыл бұрын
Sir,At the end you are saying that row and column numbers may be different,But Only square matrices have diagonals and for square matrices rows and columns must be equal
@mypersonal2464 ай бұрын
Yes bro, i am also confused... My teacher have also given question - WAP to print sum of diagonal of matrix m x n.
@__.Naruto__3 жыл бұрын
Ty sir👍
@its_LABRO2 жыл бұрын
The program is understandable but it would've been better if you explain it in Visual Studio/Dev C or other software... Because it's really hard to understand the brackets and their position
@adarshpala34246 жыл бұрын
Thank you very much Sir
@sundeepsaradhi6 жыл бұрын
hi Adarsh Thanks for your interest and support towards our channel.
@PankajSharma-tj1sn5 жыл бұрын
Sir what can we do if we have to find sum of elements above diagonal elements
@jbbheda75155 жыл бұрын
Sir plz creat programs on sum of every digonal s means
@monikaverma75826 жыл бұрын
thank you sir , sir please upload a video for quick sort
@sundeepsaradhi6 жыл бұрын
hi monika sorry for the delay and soon i will try to upload it. thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.Keep following our channel.
@ronnygamerz883 жыл бұрын
Sir both side left and right side sum of diagonalas ka video bana dijiye hindi me peoples wants it.
@khushmeetsingh15205 жыл бұрын
Hey the program isn't running......
@prensudangol15472 жыл бұрын
but one little late as the output shows 25 nothing else is the program wrong
@MuhammadUmairShaykh Жыл бұрын
Watching in 2023 exam tomorrow
@ssk76906 жыл бұрын
When uve already taken a 3x3 matrix why to use scanf? What are you asking the user?
@RAKESHKUMAR-fc5lx4 жыл бұрын
#include #include main() { int i,j,sum=0,A[3][3]={1,2,3,4,5,6,7,8,9}; clrscr(); for(i=0;i
@ronnygamerz883 жыл бұрын
Sir already takken size not an element.so thats y.
@sandhya82767 жыл бұрын
sir I want program for addition of matrix... plz can u help me sir..
@sundeepsaradhi7 жыл бұрын
hi hardik definitely i will try to upload the program with in two or three days. I would like to have a feedback from you so please make a selfie video with a feedback regarding our channel and send to my WhatsApp number 9885 466 061 expecting a feedback from you I will collect all the feedback and I will upload the feedback in my channel.
@vamsi48646 жыл бұрын
can u please tell me how to find out sum for another diagonal in the same matrix..
@sundeepsaradhi6 жыл бұрын
hi vamsi soon i will do that thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.Keep following our channel.
@mohammadzamanansari23356 жыл бұрын
How to calculate sum of diagonal from right dide
@sundeepsaradhi6 жыл бұрын
hi MD i will try to upload it.
@anveshkumarreddyc6 жыл бұрын
intialize any variable int y=0; Then in loop after displaying entered matrix, for(i=0;i
@ashishprasad19633 жыл бұрын
Never hardcode the bounds in any loop condition. You code is not dynamic.
@samtech20032 жыл бұрын
#include #define SIZE 3 // Matrix size int main() { int A[SIZE][SIZE]; int row, col, sum = 0; /* Input elements in matrix from user */ printf("Enter elements in matrix of size %dx%d: ", SIZE, SIZE); for(row=0; row
@Hmkm5227 жыл бұрын
sir please upload videos about pointers please sir