//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
Is is possible for Multidimensional arrays declaration in C++?
745 visits
Outline:2-ਡੀ ਐਰੇ ਨਾਲ ਕੰਮ ਕਰਨਾ -2-ਡੀ ਐਰੇ ਕੀ ਹਨ -ਐਰੇ ਦੀ ਰੇਂਜ| -2-ਡੀ ਐਰੇ ਨੂੰ ਡਿਕਲੇਅਰ ਕਰਨ ਲਈ ਸਿਨ੍ਤੇਕ੍ਸ(syntax) --ਉਦਾਹਰਨ: ਡਾਟਾ ਟਾਇਪ (data type) ਐਰੇ_ਦਾ_ਨਾਮ(array_name)[row(ਰੋ)][column(ਕਾਲਮ)]; -2-ਡੀ ਐਰੇ ਨੂੰ ਇਨੀਸ਼ੀਲਾਇਜ ਕਰਨ ਲਈ ਸਿਨ੍ਤੇਕ੍ਸ| --ਉਦਾਹਰਨ: ਡਾਟਾ ਟਾਇਪ(data type) ਐਰੇ_ਦਾ_ਨਾਮ(array_name)[row(ਰੋ)][column(ਕਾਲਮ)]=row-val,col-val;
2-ਡੀ ਐਰੇ ਨਾਲ ਕੰਮ ਕਰਨਾ -2-ਡੀ ਐਰੇ ਕੀ ਹਨ -ਐਰੇ ਦੀ ਰੇਂਜ| -2-ਡੀ ਐਰੇ ਨੂੰ ਡਿਕਲੇਅਰ ਕਰਨ ਲਈ ਸਿਨ੍ਤੇਕ੍ਸ(syntax) --ਉਦਾਹਰਨ: ਡਾਟਾ ਟਾਇਪ (data type) ਐਰੇ_ਦਾ_ਨਾਮ(array_name)[row(ਰੋ)][column(ਕਾਲਮ)]; -2-ਡੀ ਐਰੇ ਨੂੰ ਇਨੀਸ਼ੀਲਾਇਜ ਕਰਨ ਲਈ ਸਿਨ੍ਤੇਕ੍ਸ| --ਉਦਾਹਰਨ: ਡਾਟਾ ਟਾਇਪ(data type) ਐਰੇ_ਦਾ_ਨਾਮ(array_name)[row(ਰੋ)][column(ਕਾਲਮ)]=row-val,col-val;
Show video info
Pre-requisite