How to dynamically allocate a 2D array in C?
I know how to allocate 2D array but dynamically allocation is not clear. Would be thankful if someone will answer.
- 4598 दृश्य
- 1 उत्तर
1 उत्तर
-
-
- 02 अप्रैल
- 0 टिप्पणी
-
- Ищу достойного мужчину!
- What is C language?
- What site is the best video tutorial website for learning C programming?
- How will you print numbers from 1 to 100 without using loop?
- Write a program to calculate the following series:
- Why C language is introduced? Explain your answer
- What is C used for? Explain your answer
- Trade crypto anytime
- What are storage classes in C language?
- Explain the difference between while loop and do-while loop.
मॉक परीक्षण अभ्यास के लिए
c programming
Following are different ways to create a 2D array on heap (or dynamically allocate a 2D array).br /In the following examples, we have considered ‘r‘ as number of rows, ‘c‘ as number of columns and we created a 2D array with r = 3, c = 4 and following valuesbr /br / 1 2 3 4br / 5 6 7 8br / 9 10 11 12