3-Dimensional Arrays in C | Sanfoundry
Вставка
- Опубліковано 7 лют 2025
- 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
Thank you for your videos Sir. Your content is of very high quality, and helped me a lot in refreshing on the fundamentals.
Loved every video
Thanks sir for all videos
You are welcome!
Sir you helped me a lot to understand c in depth ! .... Now I am waiting for pointers ?
When will pointer series release ! Eagerly waiting ...
I will start recording this weekend. Thank you for your patience.
New video on pointer is published.
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
@@SanfoundryOfficial What about the other topics? Will there be any new additions to this playlist?
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.
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.
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
Nice , I missed the second question. boundaries in C is problematic until you get used to it. Thanks Manish.
My pleasure
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
Very good sir 👍
Thank you
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
Sir how can I give test on sanfoundry for get certificate. please tell me .
Email enquiry@sanfoundry.com
@@SanfoundryOfficial thank you sir
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
Is there any online training clases available for linux programming ?
No, it's not there at this point of time.
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
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
We have many Java programs ready and others are under works. Here's the url to get started: www.sanfoundry.com/java-programming-examples/
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
But the 20th is 42 @21:18
Sir, plzz upload video on string advance sir 🙏🙏
Ack. Will take sometime.
@@SanfoundryOfficial ok sir
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
1000 basic Java program something.
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 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
I am starting to dislike C compiler. It simply shifts most of its responsibilities on to the coder's shoulder
Hmmmm...ok