#include <stdio.h>int main(){ int rowCount, columnCount, i, j; int firstMatrix[10][10], secondMatrix[10][10], resultMatrix[10][10]; printf("Number of rows of matrices to be subtracted : "); scanf("%d", &rowCount); printf("Number of columns matrices to be subtracted : "); scanf("%d", &columnCount); printf("Elements of first matrix : \n"); for (i = 0; i < rowCount; i++) for (j = 0; j < columnCount; j++) scanf("%d", &firstMatrix[i][j]); printf("Elements of second matrix : \n"); for (i = 0; i < rowCount; i++) for (j = 0; j < columnCount; j++) scanf("%d", &secondMatrix[i][j]); printf("Difference of entered matrices : \n"); for (i = 0; i < rowCount; i++) { for (j = 0; j < columnCount; j++) { resultMatrix[i][j] = firstMatrix[i][j] - secondMatrix[i][j]; printf("%d\t",resultMatrix[i][j]); } printf("\n"); } return 0;}ByN.L.PoojaEce departmentIRTT
Explain about for loop??
876 visits
Outline: ਲੂਪ੍ਸ (loops) ਲੂਪ੍ਸ (loops) ਵਾਇਲ (while)ਅਤੇ ਡੂ ਵਾਇਲ(do while) ਦੀ ਸਿੰਟੈਕ੍ਸ(syntax) ਵਾਇਲ ਲੂਪ ਅਤੇ ਡੂ ਵਾਇਲ ਲੂਪ ਦੀ ਤੁਲਨਾ ਫੌਰ(for) ਲੂਪ ਦੀ ਸਿੰਟੈਕ੍ਸ ਵਿਭਿੱਨ ਐਰਰਜ਼ (errors)
ਲੂਪ੍ਸ (loops) ਲੂਪ੍ਸ (loops) ਵਾਇਲ (while)ਅਤੇ ਡੂ ਵਾਇਲ(do while) ਦੀ ਸਿੰਟੈਕ੍ਸ(syntax) ਵਾਇਲ ਲੂਪ ਅਤੇ ਡੂ ਵਾਇਲ ਲੂਪ ਦੀ ਤੁਲਨਾ ਫੌਰ(for) ਲੂਪ ਦੀ ਸਿੰਟੈਕ੍ਸ ਵਿਭਿੱਨ ਐਰਰਜ਼ (errors)
Show video info
Pre-requisite