Working With 2D Arrays - Malayalam
- subtitles off
- captions off
- English
- Malayalam
This is a sample video. To access the full content,
 please  
                                
                                     Login
                                
                                 
- Questions posted on Forums
- C and Cpp Tutorials - Malayalam
- 
                Assingment -14
                //Two-dimensional arrays in C#include <stdio.h>int main(){ int i,j; int num1[3][4],num2[3][4]; printf("Enter the elements of 3X4 array num1\n"); for(i=0; i<3; i++) for(j=0; j<4; j++) scanf("%d", &num1[i][j]); printf("Enter the elements of 3X4 array num2\n"); for(i=0; i<3; i++) for(j=0; j<4; j++) scanf("%d", &num2[i][j]); printf("The subtraction of num1 and num2 is\n"); for(i=0; i<3; i++) { for(j=0; j<4; j++) printf("%3d ", (num1[i][j] - num2[i][j])); printf("\n"); } return 0;}Naveen VP 04-05M 10-20S naveenpalanisamy142002@gmail.com
 Answer last updated on: Aug. 19, 2024, 3:59 p.m.
 
- 
                Arrays
                Is is possible for Multidimensional arrays declaration in C++? 05-06M 20-30S sherylviniba@gmail.com
 Answer last updated on: April 15, 2020, 8:31 a.m.
 
- 
                
                1 First C Program First C Program
- 
                
                2 First Cpp Program First Cpp Program
- 
                
                3 Tokens Tokens
- 
                
                4 Functions Functions
- 
                
                5 Scope Of Variables Scope Of Variables
- 
                
                6 If And Else If statement If And Else If statement
- 
                
                7 Nested If And Switch Statement Nested If And Switch Statement
- 
                
                8 Increment And Decrement Operators Increment And Decrement Operators
- 
                
                9 Arithmetic Operators Arithmetic Operators
- 
                
                10 Relational Operators Relational Operators
- 
                
                11 Logical Operators Logical Operators
- 
                
                12 Loops Loops
- 
                
                13 Arrays Arrays
- 
                
                 Working With 2D Arrays Working With 2D Arrays
- 
                
                15 Strings Strings
- 
                
                16 String Library Functions String Library Functions
- 
                
                17 Working With Structures Working With Structures
- 
                
                18 Understanding Pointers Understanding Pointers
- 
                
                19 Function Call Function Call
- 
                
                20 File Handling In C File Handling In C
Questions posted on ST Forums:
1577 visits
Outline:
2-D Arrays -എന്താണ് 2-D Arrays. -array ന്റെ range. - 2-D arrays ഡിക്ലയർ ചെയ്യുന്നതിനുള്ള ഘടന --ഉദാഹരണം: data type array_name[row][column]; -2-D arrays initialize ചെയ്യുന്നതിനുള്ള ഘടന --ഉദാഹരണം: data type array_name[row][column]= row-val,col-val;
| Width: | 800 | Height: | 600 | 
|---|---|---|---|
| Duration: | 00:07:55 | Size: | 5.1 MB | 
Show video info
 
                                    
                                