3-Dimensional Arrays in C | Sanfoundry

Поділитися
Вставка
  • Опубліковано 14 жов 2024
  • In the "3-Dimensional Arrays in C" video, we are going to learn about 3-dimensional arrays and how to declare, define and initialize a 3-dimensional array. We will discuss good programming practices for 3D array initialization, followed by an understanding of the memory representation of an array in 3 dimensions. We will solve a tricky problem on a 3D array and learn the importance of the arrangement of array elements in memory, followed by a live demo and a detailed explanation.
    Advanced C Programming Training Course
    Instructor: Manish Bhojasia (Founder & CTO @ sanfoundry.com)
    Join his free classes at t.me/sanfoundr...
    1. Advanced C Programming Videos (English Playlist):
    • Advanced C Programming
    2. Advanced C Programming Videos (Hindi Playlist):
    • Advanced C Programming...
    3. Advanced C Programming Tutorial Video Series:
    www.sanfoundry...
    4. C Interview Questions Video Series:
    www.sanfoundry...
    5. 1000 MCQs (Multiple Choice Questions) on C programming:
    www.sanfoundry...
    6. Ultimate C Programs Collection (with Data-Structures + Algorithms):
    www.sanfoundry...
    www.sanfoundry...
    #AdvancedCTutorial #CTutorial #CProgramming #ManishBhojasia #Sanfoundry

КОМЕНТАРІ • 38

  • @Iamine1981
    @Iamine1981 3 місяці тому

    Thank you for your videos Sir. Your content is of very high quality, and helped me a lot in refreshing on the fundamentals.

  • @ruthlessss1147
    @ruthlessss1147 Місяць тому

    Loved every video

  • @chaitanyak5541
    @chaitanyak5541 3 роки тому

    Thankyou sir both website and UA-cam channel of Sanfoundry are helping me a lot. I got a question about 3 dimensional array can you tell me where it is used usually.

    • @SanfoundryOfficial
      @SanfoundryOfficial  3 роки тому

      Thank you. Regarding 3D array, I haven't seen much usage of it. This video was primarily created based on a request from one of the readers.

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Dear Subscriber,
      Join "Sanfoundry Classes" Telegram Channel: This will be the central place to read my latest announcement and schedule of classes on Programming, Data-Structures, Kernel, Personality development and Mentoring. I will also be answering many technical doubts and queries on my Videos. Here's the telegram link:
      t.me/sanfoundryclasses
      Thank you,
      Manish Sir @ Sanfoundry

  • @sanmeetsingh4
    @sanmeetsingh4 2 роки тому +2

    Sir you helped me a lot to understand c in depth ! .... Now I am waiting for pointers ?
    When will pointer series release ! Eagerly waiting ...

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому +1

      I will start recording this weekend. Thank you for your patience.

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому +1

      New video on pointer is published.

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Dear Subscriber,
      Join "Sanfoundry Classes" Telegram Channel: This will be the central place to read my latest announcement and schedule of classes on Programming, Data-Structures, Kernel, Personality development and Mentoring. I will also be answering many technical doubts and queries on my Videos. Here's the telegram link:
      t.me/sanfoundryclasses
      Thank you,
      Manish Sir @ Sanfoundry

    • @kavyashreek.j3961
      @kavyashreek.j3961 Рік тому +1

      @@SanfoundryOfficial What about the other topics? Will there be any new additions to this playlist?

  • @surajjadhav2887
    @surajjadhav2887 Рік тому

    I just tried to run a code snippet with extra pair of brackets and found that the data storage is changing
    1.
    int arr2[][3][2] = { {11, 12, 13, 14, 15, 16}, {21, 22, 23, 24, 25, 26},
    {31, 32, 33, 34, 35, 36}, {41, 42, 43, 44, 45, 46}};
    printf("arr2[3][0][0]: %d
    ", arr2[3][0][0]);
    output: arr2[3][0][0]: 41
    2. Added extra pair of {}
    int arr2[][3][2] = { {{11, 12, 13, 14, 15, 16}, {21, 22, 23, 24, 25, 26},
    {31, 32, 33, 34, 35, 36}, {41, 42, 43, 44, 45, 46}}};
    printf("arr2[3][0][0]: %d
    ", arr2[3][0][0]);
    output: arr2[3][0][0]: 11

  • @ksanjaynayak3339
    @ksanjaynayak3339 2 роки тому

    Thanks sir for all videos

  • @sravs8155
    @sravs8155 3 роки тому

    Is there any online training clases available for linux programming ?

    • @SanfoundryOfficial
      @SanfoundryOfficial  3 роки тому

      No, it's not there at this point of time.

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Dear Subscriber,
      Join "Sanfoundry Classes" Telegram Channel: This will be the central place to read my latest announcement and schedule of classes on Programming, Data-Structures, Kernel, Personality development and Mentoring. I will also be answering many technical doubts and queries on my Videos. Here's the telegram link:
      t.me/sanfoundryclasses
      Thank you,
      Manish Sir @ Sanfoundry

  • @nullzero9224
    @nullzero9224 2 роки тому

    Nice , I missed the second question. boundaries in C is problematic until you get used to it. Thanks Manish.

  • @rohinisingh6916
    @rohinisingh6916 2 роки тому +1

    Sir how can I give test on sanfoundry for get certificate. please tell me .

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Email enquiry@sanfoundry.com

    • @rohinisingh6916
      @rohinisingh6916 2 роки тому

      @@SanfoundryOfficial thank you sir

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Dear Subscriber,
      Join "Sanfoundry Classes" Telegram Channel: This will be the central place to read my latest announcement and schedule of classes on Programming, Data-Structures, Kernel, Personality development and Mentoring. I will also be answering many technical doubts and queries on my Videos. Here's the telegram link:
      t.me/sanfoundryclasses
      Thank you,
      Manish Sir @ Sanfoundry

  • @Parvezvlogs9
    @Parvezvlogs9 3 роки тому

    Hello sir .In sanfoundry (online website).there is not complete updation of java questions n answer.. (100 basic Java program)
    I really want to learn this.but not updated.please upload .it will be very helpful for us

    • @SanfoundryOfficial
      @SanfoundryOfficial  3 роки тому

      We have many Java programs ready and others are under works. Here's the url to get started: www.sanfoundry.com/java-programming-examples/

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Dear Subscriber,
      Join "Sanfoundry Classes" Telegram Channel: This will be the central place to read my latest announcement and schedule of classes on Programming, Data-Structures, Kernel, Personality development and Mentoring. I will also be answering many technical doubts and queries on my Videos. Here's the telegram link:
      t.me/sanfoundryclasses
      Thank you,
      Manish Sir @ Sanfoundry

  • @brijesh3871
    @brijesh3871 2 роки тому

    Sir, plzz upload video on string advance sir 🙏🙏

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Ack. Will take sometime.

    • @brijesh3871
      @brijesh3871 2 роки тому

      @@SanfoundryOfficial ok sir

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Dear Subscriber,
      Join "Sanfoundry Classes" Telegram Channel: This will be the central place to read my latest announcement and schedule of classes on Programming, Data-Structures, Kernel, Personality development and Mentoring. I will also be answering many technical doubts and queries on my Videos. Here's the telegram link:
      t.me/sanfoundryclasses
      Thank you,
      Manish Sir @ Sanfoundry

  • @renukagarje5749
    @renukagarje5749 3 роки тому

    Very good sir 👍

    • @SanfoundryOfficial
      @SanfoundryOfficial  3 роки тому

      Thank you

    • @SanfoundryOfficial
      @SanfoundryOfficial  2 роки тому

      Dear Subscriber,
      Join "Sanfoundry Classes" Telegram Channel: This will be the central place to read my latest announcement and schedule of classes on Programming, Data-Structures, Kernel, Personality development and Mentoring. I will also be answering many technical doubts and queries on my Videos. Here's the telegram link:
      t.me/sanfoundryclasses
      Thank you,
      Manish Sir @ Sanfoundry

  • @rkingham3181
    @rkingham3181 2 роки тому

    But the 20th is 42 @21:18

  • @rkingham3181
    @rkingham3181 2 роки тому

    I am starting to dislike C compiler. It simply shifts most of its responsibilities on to the coder's shoulder

  • @Parvezvlogs9
    @Parvezvlogs9 3 роки тому

    1000 basic Java program something.

    • @SanfoundryOfficial
      @SanfoundryOfficial  3 роки тому

      We have many Java programs ready and others are under works. Here's the url to get started: www.sanfoundry.com/java-programming-examples/

    • @Parvezvlogs9
      @Parvezvlogs9 3 роки тому

      @@SanfoundryOfficial yes sir ,but not having question on collection, exception handling,file handling, inheritance,multithreading, networking,string handling and utility classes all these are important ,I really want all concept questions.waiting for all the questions regarding this