C_57 Two Dimensional Array program 2 | Program to print Transpose of Matrix

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 พ.ย. 2024

ความคิดเห็น • 221

  • @tanishka4464
    @tanishka4464 2 ปีที่แล้ว +90

    Ma'am 2 months back when I started coding, I could not understand anything. At that period thinking about coding gave me goosebumps. But 1 month back I discovered your channel and it was really kind of a blessing for me. You made my every doubt crystal clear. The way you explain each point makes the concept crystal clear. Really thank you, ma'am.❤x3000

    • @abhayshukla0449
      @abhayshukla0449 ปีที่แล้ว +1

      Toh phir channel monetize hone ke baad ma'am ko money de dena🙏🙏😁😁

    • @ahaskarsundriyal3922
      @ahaskarsundriyal3922 10 หลายเดือนก่อน

      ​@@abhayshukla0449 Tu dede phle

    • @hariharann9930
      @hariharann9930 หลายเดือนก่อน

      tf

  • @safalyakumbhare8756
    @safalyakumbhare8756 2 ปีที่แล้ว +195

    I think I m wasting my money in college because youtube and google is best way to clear our doubt and way better explained than college . Thank You😊😊

  • @Deepika_319
    @Deepika_319 ปีที่แล้ว +12

    I started coding in this month (September 2023) and i checked a lot of lectures and channels... but this one is best....i understand evrythg clearly...i will complete all the languages from here...one of my senior told me about this channel amd now im addicted to jk❤️...thank you so much mam ❤

  • @anime.__.5501
    @anime.__.5501 17 วันที่ผ่านมา +1

    Really the best tutor i found understood the whole array concept THANKS JENNY MAM

  • @muhammadzakariya9390
    @muhammadzakariya9390 3 ปีที่แล้ว +6

    A.o.A Mam....today the day of Hajj day for the Muslim...being a humanity .next day will be a Eid day..with the heart touching.i wish you Eid-ul-Azha

  • @sasikalakarnatakam4354
    @sasikalakarnatakam4354 21 วันที่ผ่านมา

    Ur the best teacher❤😊

  • @rajat-l1j
    @rajat-l1j 9 หลายเดือนก่อน

    Mam you are far better than my university teachers ❤

  • @theenglishspeaker827
    @theenglishspeaker827 2 ปีที่แล้ว +4

    Mam I just don't know how much thanks I should say to you, these videos are very very helpful. Thanks a million!

  • @knowledgeimprover6342
    @knowledgeimprover6342 2 ปีที่แล้ว +3

    I am from iit but understand you better than my professor thanku you

  • @theromanianfox4071
    @theromanianfox4071 2 ปีที่แล้ว +13

    I think for the homework you gave us,it's just a matter of transposing the initial matrix as you did,but using printf to state that "b" is the transposed matrix.
    Here is my code, Ma'am , and it worked :
    #include
    int main ()
    {
    int a [2][3];
    int i, j = 0;
    printf ("Please enter numbers for Matrix :
    ");
    for (i = 0; i < 2; i ++)
    {
    for (j = 0; j < 3; j ++)
    {
    scanf ("%d", &a [i][j]);
    }
    }

    printf ("The Matrix \"a\" is :
    ");
    for (i = 0; i < 2; i ++)
    {
    for (j = 0; j < 3; j ++)
    {
    printf ("%d\t", a [i][j]);
    }
    printf ("
    ");
    }
    printf ("The Transposed Matrix \"b\" is :
    ");
    for (i = 0; i < 3; i ++)
    {
    for (j = 0; j < 2; j ++)
    {
    printf ("%d\t", a [j][i]);
    }
    printf ("
    ");
    }
    return 0;
    }

    • @adarshrupeshjadhav8631
      @adarshrupeshjadhav8631 ปีที่แล้ว

      .

    • @-VINITSHEORAN
      @-VINITSHEORAN ปีที่แล้ว +13

      you did nothing diffrent #include
      #include
      int main() {
      int a[2][3],i,j,transpose[3][2];
      printf("enter the matrix
      ");
      for(i=0;i

  • @SaniyaMomin-f5c
    @SaniyaMomin-f5c ปีที่แล้ว +1

    Jenny's lectures is the best.

  • @nobra2146
    @nobra2146 11 หลายเดือนก่อน

    Ma'am you are the best teacher of me.

  • @sinusgp
    @sinusgp ปีที่แล้ว

    Mam ....hello...super way of explaining coding methods in c ...your way of teaching making us to understand complicated things in easiest way ..thanks for sharing

  • @PrateekMishra.
    @PrateekMishra. 3 ปีที่แล้ว +11

    Best Teacher forever ❤
    Thanks Ma'am

  • @javierv.5242
    @javierv.5242 ปีที่แล้ว

    Ma'am, I had to sign into google to tell you that you are doing a good job. I have not watched many of your lectures recently because of the holidays and I was bored with the material after about 50 lectures, but I hope to continue going! Thanks from Los Angeles, CA! God bless you!

  • @NikhilSarnaik-z5k
    @NikhilSarnaik-z5k ปีที่แล้ว +11

    int rw_size , cl_size;
    printf("Enter the Row size :");
    scanf("%d",&rw_size);
    printf("Enter the Column size :");
    scanf("%d",&cl_size);
    int arr[rw_size][cl_size];
    printf("Enter the elements in an array :");
    for(int i=0 ; i

  • @jeevaad6615
    @jeevaad6615 3 ปีที่แล้ว +11

    video starts at 2:39

  • @RehanAnsari-eu7ru
    @RehanAnsari-eu7ru 10 หลายเดือนก่อน +1

    Mam your lecture are more beautiful as beautiful as you are ❤❤

  • @anushkayadav8443
    @anushkayadav8443 5 หลายเดือนก่อน

    Nice explanation ma'am

  • @sachin.rsachi1221
    @sachin.rsachi1221 หลายเดือนก่อน

    Mam while transposing will row becomes j and coloum becomes i..

  • @001pullayithrisha2
    @001pullayithrisha2 2 ปีที่แล้ว +7

    we have to initialize b
    Then printf("b=
    ",b)

  • @MdRubel-hr5ur
    @MdRubel-hr5ur ปีที่แล้ว

    Thanks ma'am for help us . Your teaching method is very easy and comfortable . I always understand your logic.

  • @jayamishra9431
    @jayamishra9431 ปีที่แล้ว

    Thankyou ma'am really very easy explanation ever!!!
    One thing I want to told you our name is same I m really glad 🥰.

  • @ganeshdharavath1530
    @ganeshdharavath1530 ปีที่แล้ว

    Your teaching never before ever after..

  • @pratikdubey1171
    @pratikdubey1171 3 ปีที่แล้ว +9

    Pls make a video on* inverse of a matrix*

  • @stormbreaker2791
    @stormbreaker2791 2 หลายเดือนก่อน +1

    why can't i find this channel before 2 years :)

  • @gskerbecs9513
    @gskerbecs9513 9 หลายเดือนก่อน

    Thanks alot mam

  • @zimranmomin9556
    @zimranmomin9556 2 หลายเดือนก่อน

    I love you ma'am ❤

  • @JayasreeGhosh
    @JayasreeGhosh 3 ปีที่แล้ว +12

    MA'AM.. PLEASE START MAKING VIDEOS ON FUNCTIONS IN C... REALLY FACING A LOT OF PROBLEMS WITH THIS... HOPE TO GET IT BEING CLEARED BY YOUR VIDEOS... PLZ UPLOAD FUCTIONS () VIDEOS!.....

    • @Dr.Cmbilal
      @Dr.Cmbilal 3 ปีที่แล้ว

      th-cam.com/video/yEGJ1KeQuzE/w-d-xo.html

  • @gramawardsachivalayaminfo4209
    @gramawardsachivalayaminfo4209 2 ปีที่แล้ว +11

    Ma'am, I didn't got any idea how to store elements of one matrix into another matrix ( as you told in this video at 12:16), can you please give some hint on this

    • @handler12
      @handler12 ปีที่แล้ว +1

      its very easy like in for loop a[i][j]=b[j][i];

    • @handler12
      @handler12 ปีที่แล้ว +1

      at last print b[j][i]

  • @BECKARISHMAG
    @BECKARISHMAG 3 ปีที่แล้ว +5

    It is easy to understand mam.Thank you.

  • @GooodGagets
    @GooodGagets ปีที่แล้ว

    It's transpose right , that means rows into columns and columns into rows
    We are write with 2 for loop , one for row and another for column just Swift them that's all
    Example ,
    for(i=0; i

    • @saravanaselva6643
      @saravanaselva6643 4 หลายเดือนก่อน

      In second for loop print f a[j][i] come na..or a[i][j]?

  • @Deepika_319
    @Deepika_319 ปีที่แล้ว +1

    Thank you mam❤

  • @poojaraskar5037
    @poojaraskar5037 3 ปีที่แล้ว +19

    Mam when are you going to teach Structure, union and Pointers

    • @741ibrahim2
      @741ibrahim2 3 ปีที่แล้ว +2

      yes its an imp topic

    • @CodingSkillsOfficial
      @CodingSkillsOfficial 2 ปีที่แล้ว

      Hello friends I created a video..
      Transpose of matrix so you please watch this video
      th-cam.com/video/oHNjaZcOpZs/w-d-xo.html

  • @58162O
    @58162O 2 ปีที่แล้ว +3

    Thank u so much mam....
    I need more videos

  • @Sandy-me2sw
    @Sandy-me2sw 2 ปีที่แล้ว +2

    U stole my heart 😍😍

  • @chiradeepbhattacharya2122
    @chiradeepbhattacharya2122 2 ปีที่แล้ว +3

    Ma'am please help us with Java programming series ASAp, because of you I started to love coding from a Non - CS Background.

  • @lovelyheartwaitingforyou2439
    @lovelyheartwaitingforyou2439 3 ปีที่แล้ว +2

    Your class are clear tqq madam

  • @Preetisharma-sh9dk
    @Preetisharma-sh9dk 2 ปีที่แล้ว +3

    Thank you ma'am for your explanation 🙂

    • @CodingSkillsOfficial
      @CodingSkillsOfficial 2 ปีที่แล้ว

      Hello friends I created a video..
      Transpose of matrix so you please watch this video
      th-cam.com/video/oHNjaZcOpZs/w-d-xo.html

  • @srikarballeda2735
    @srikarballeda2735 7 หลายเดือนก่อน

    Mam I have doubt
    In for loop we use semicolon

  • @Disha_Jarad
    @Disha_Jarad 2 ปีที่แล้ว +3

    Nice teaching👏👏👏

  • @shahjamalSK
    @shahjamalSK 8 หลายเดือนก่อน

    Take love from ☺Dhaka

  • @nirmalaravind3812
    @nirmalaravind3812 ปีที่แล้ว

    start at 2:40

  • @rifihari8705
    @rifihari8705 3 ปีที่แล้ว +5

    Mam. Plse upload the series of oops concepts in java.

  • @sudeepkm1000
    @sudeepkm1000 3 ปีที่แล้ว +2

    Ma'am can you plz make videos on matrix multiplication, addition, and to check whether matrix is upper triangular or lower triangular matrix

  • @ayushking1674
    @ayushking1674 ปีที่แล้ว

    Lecture start at 2:37

  • @741ibrahim2
    @741ibrahim2 3 ปีที่แล้ว +6

    12:53 mam has gave us the hint

  • @dileryadav9983
    @dileryadav9983 ปีที่แล้ว

    kya gajab batate h mam.

  • @satheeshsasidharan45
    @satheeshsasidharan45 ปีที่แล้ว +1

    Ma'am, I didn't get any idea how to store elements of one matrix into another matrix. can you please give some hint on this

  • @mihirjoshi6798
    @mihirjoshi6798 3 ปีที่แล้ว +2

    ma'am i got segmentation fault error while running the same code , which you explained!! . please help me

  • @bantikumar08
    @bantikumar08 3 ปีที่แล้ว +4

    Mam please make a video on function

  • @iasaspirant1441
    @iasaspirant1441 2 ปีที่แล้ว +2

    superb explanation mam

  • @letlearnEnglish1356
    @letlearnEnglish1356 3 ปีที่แล้ว +1

    Mam aap ka online course he kay

  • @palakrajak9145
    @palakrajak9145 3 ปีที่แล้ว +3

    Mam Can Uh Make One Separate Vdo For Campus Placement Preparation

  • @vipul1246
    @vipul1246 2 ปีที่แล้ว

    I dont know M about matrix , but still liked this video

  • @thulasireddy1122
    @thulasireddy1122 3 ปีที่แล้ว +2

    mam how to work with gcc in lunux machine in c language practice and dubug our cade could you please explain one detailed VEDIO on this mam.

  • @it033vineetkumar2
    @it033vineetkumar2 3 ปีที่แล้ว +16

    this is what i coded for transpose. in this dimension of array can be variable(we can declare it at run time).
    #include
    int main()
    {
    int a[100][100],b,c,i,j;
    printf("\tTranspose of a Matrix!
    ");
    printf("Enter Dimension of Matrix :
    ");
    scanf("%d%d",&b,&c);
    printf("Enter elements of Matrix :
    ");
    for ( i = 0; i < b; i++)
    {
    for ( j = 0; j < c; j++)
    {
    scanf("%d",&a[i][j]);
    }

    }
    printf("Matrix formed by provided information is
    ");
    for ( i = 0; i < b; i++)
    {
    for ( j = 0; j < c; j++)
    {
    printf("%d\t", a[i][j]);
    }
    printf("
    ");
    }
    printf("
    Transpose of the provided matrix is :
    ");
    for ( i = 0; i < c; i++)
    {
    for ( j = 0; j < b; j++)
    {

    printf("%d\t",a[j][i]);
    }
    printf("
    ");
    }

    return 0;
    }

    • @believer.1201
      @believer.1201 2 ปีที่แล้ว +2

      But declaring an array size as hundred will waste memory na??
      Btw thanks:D

  • @Beginnercodingworld
    @Beginnercodingworld ปีที่แล้ว

    Mam u are the best 👌

  • @Mohankumar-hy4og
    @Mohankumar-hy4og 3 ปีที่แล้ว +1

    Mam you have 2 by 3 matrix is available then you solve it simple way.
    If i have a 3 by 3 matrix is available then how can solve it program..

  • @CNILOYBARUA
    @CNILOYBARUA 2 ปีที่แล้ว +2

    Excellent mam

  • @piyushkumawat528
    @piyushkumawat528 ปีที่แล้ว

    online compiler gives garbage value if i use sum inside for loop for reading array. but my system cmd does not why is that. the program is same

  • @sociopatchcoder5582
    @sociopatchcoder5582 3 ปีที่แล้ว +2

    want operating systems lectures .. pleasse also teach that subject

  • @poojaraskar5037
    @poojaraskar5037 3 ปีที่แล้ว +1

    Thanks for video

  • @blaze102
    @blaze102 ปีที่แล้ว

    Second Method to find the transpose
    #include
    int main()
    {int n,i,j,x=0;
    int arr[3][2]={1,2,4,5,6,7};
    int b[2][3];
    for(i=0;i

  • @sairampolisetty2059
    @sairampolisetty2059 3 ปีที่แล้ว +1

    Mam now I am watching data structures in your plalist but you posted arrays video .
    😂😂😂

  • @fellthebeats2741
    @fellthebeats2741 2 ปีที่แล้ว

    Mam aap bohot achhe lag rahe ho ❤️

  • @tnjmathi967
    @tnjmathi967 3 ปีที่แล้ว +1

    mam this pgm getting, is not proper output

  • @AmitDas-nw6ux
    @AmitDas-nw6ux ปีที่แล้ว +2

    I love you mam

  • @Abdirizakmrashid
    @Abdirizakmrashid 2 ปีที่แล้ว

    Thanks teacher

  • @jaruratwaitki9064
    @jaruratwaitki9064 2 ปีที่แล้ว

    thanks maam for very nice teach us
    mossst thanks maam

  • @ELBAbujarAnsari
    @ELBAbujarAnsari 2 ปีที่แล้ว

    U r best mam.

  • @chandanmishra5274
    @chandanmishra5274 ปีที่แล้ว +1

    Ma'am lots of syntax error.

  • @praveencomputerandcoaching8242
    @praveencomputerandcoaching8242 3 ปีที่แล้ว

    Every next looking more smart

  • @charangaming9423
    @charangaming9423 ปีที่แล้ว

    Thank you

  • @ajju3236
    @ajju3236 3 ปีที่แล้ว

    Love you and thank you ma'am

  • @kabilankabilan2128
    @kabilankabilan2128 ปีที่แล้ว +1

    nice da.😊😊👍👍

  • @emanisuresh8219
    @emanisuresh8219 3 ปีที่แล้ว +1

    Mam,, i cant find C_46 video in this play list.. please some one let me know if found..

    • @YuvrajSingh-th7vw
      @YuvrajSingh-th7vw 3 ปีที่แล้ว +1

      th-cam.com/video/08LWytp6PNI/w-d-xo.html

    • @emanisuresh8219
      @emanisuresh8219 3 ปีที่แล้ว +1

      @@YuvrajSingh-th7vw thank you bro..

  • @HuzaifaShah
    @HuzaifaShah 3 ปีที่แล้ว +1

    Multiplication of matrix is difficult

  • @atulkumarsoni6568
    @atulkumarsoni6568 2 ปีที่แล้ว

    Maam vc coder may c ka debug kaise set kare

  • @gopaljangid5762
    @gopaljangid5762 3 ปีที่แล้ว

    Hum first,hum first..

  • @rajeevkumarsingh8290
    @rajeevkumarsingh8290 3 ปีที่แล้ว

    Mam interchange mattrix me a(j)(i)

  • @RTBOSS
    @RTBOSS 3 ปีที่แล้ว

    But 2,3 array it's just for look, what if robot take any random size metric as like 1x5, 6x2, 8x4, 3x10... What ever

    • @saravanaselva6643
      @saravanaselva6643 4 หลายเดือนก่อน

      Just change the input..as u mentioned..

  • @shashank_kishore_
    @shashank_kishore_ หลายเดือนก่อน

    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @rossishibis4521
    @rossishibis4521 2 ปีที่แล้ว +1

    I need assignment answer mam ..😥

  • @jontykaul2168
    @jontykaul2168 3 ปีที่แล้ว

    Thank you didi❤️💕

  • @AVANTHIKAR-qn1zu
    @AVANTHIKAR-qn1zu ปีที่แล้ว +9

    #include
    int main ()
    {
    int a [2][3];
    int i, j = 0;
    printf ("Please enter numbers for Matrix :
    ");
    for (i = 0; i < 2; i ++)
    {
    for (j = 0; j < 3; j ++)
    {
    scanf ("%d", &a [i][j]);
    }
    }
    printf ("The Matrix \"a\" is :
    ");
    for (i = 0; i < 2; i ++)
    {
    for (j = 0; j < 3; j ++)
    {
    printf ("%d\t", a [i][j]);
    }
    printf ("
    ");
    }
    printf ("The Transposed Matrix is :
    ");
    int b[3][2];
    for (i = 0; i < 3; i ++)
    {
    for (j = 0; j < 2; j ++)
    {
    printf ("%d\t", a[j][i]);
    b[i][j] = a [j][i];
    }
    printf ("
    ");
    }
    printf ("
    The Transposed Matrix using variable b is :
    ");
    for (i = 0; i < 3; i ++)
    {
    for (j = 0; j < 2; j ++)
    {
    printf ("%d\t", b[i][j]);
    }
    printf ("
    ");
    }
    return 0;
    }
    OUTPUT:
    Please enter numbers for Matrix :
    1
    2
    3
    4
    5
    6
    The Matrix "a" is :
    1 2 3
    4 5 6
    The Transposed Matrix is :
    1 4
    2 5
    3 6
    The Transposed Matrix using variable b is :
    1 4
    2 5
    3 6

  • @RTBOSS
    @RTBOSS 3 ปีที่แล้ว

    Itana program likhe Isase jaldi to me book me solve kardu😂😂😂
    But ye bhi jaruri he ╭∩╮︶︿︶

  • @theconfidential6278
    @theconfidential6278 ปีที่แล้ว

    Mam you can start coding courses

  • @rajavikrampullem7583
    @rajavikrampullem7583 3 ปีที่แล้ว

    Awesome...

  • @muhsinali5182
    @muhsinali5182 3 ปีที่แล้ว

    Mam please so remobing dublicate and print unique numbers in array

  • @sachinmondal571
    @sachinmondal571 2 ปีที่แล้ว

    Following will be the answer of the assignment mam has given
    #include
    int main()
    { int a[3][4]={1,2,3,4,5,6,7,8,9,10,11,12};
    int b[4][3];
    int i,j,m, k,l=0;
    printf("The transpose of the matrix is
    ");
    for(i=0;i

  • @kumudranjan1467
    @kumudranjan1467 3 ปีที่แล้ว

    "KUMNAV GATE CSE" TH-cam channel for CSE/IT subjects

  • @parica117
    @parica117 2 ปีที่แล้ว

    Thank you mam

  • @ajayvarma-bg7uu
    @ajayvarma-bg7uu 3 ปีที่แล้ว

    Please start c++ course I can't found any proper content in TH-cam please

  • @sumanthcr8148
    @sumanthcr8148 2 ปีที่แล้ว +1

    Directagi matrig barammo

  • @zigzagfilmlatest7646
    @zigzagfilmlatest7646 3 ปีที่แล้ว

    mam ap mera commnt nahi dekhti hi u r great

  • @Chandra_official01
    @Chandra_official01 ปีที่แล้ว

    Thanks mam

  • @anu.v_
    @anu.v_ 3 หลายเดือนก่อน +1

    #include
    int main()
    {
    int a[3][2];
    int b[2][3];
    printf("Enter 2-D array elements: ");
    for(int i=0;i

  • @ParamitaDey-bi1mg
    @ParamitaDey-bi1mg 3 ปีที่แล้ว

    I cannot understand why during taking the array inputs we use address of sign (&) but while printing array we are not using address of sign (&) why ?? If anyone know pls tell me

    • @theshahzorahmed6967
      @theshahzorahmed6967 3 ปีที่แล้ว

      Let me take an ex for better understanding if you entered a value of 7 it will go and save in any xyz address memory , to display the value you have entered you will use printf so if you use & it will show you address of the entered number not the number you have entered (7) so to display the number you have entered we use & in scanf to get the entered number not the address of the entered number. Hope I have cleared your doubt 🙂.

    • @ParamitaDey-bi1mg
      @ParamitaDey-bi1mg 3 ปีที่แล้ว

      @@theshahzorahmed6967 😭😭 I can not understand why to write address of (&) in scanf.... 😣😣😞😞 .. I understood that in prinf we do not use address of because if we use it then it will print the address not the number

    • @bijoyetribhowmik9905
      @bijoyetribhowmik9905 2 ปีที่แล้ว

      @@ParamitaDey-bi1mg in scanf you take the input from user & store it in the address.. that's why we use address of(&)

  • @gsatishmkumar3526
    @gsatishmkumar3526 2 ปีที่แล้ว

    C program to calculate multiplication and transpose of matrix .
    Please 🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺🥺
    Give this code