Articles by Team EasyExamNotes

Function in C Programming

C Programming | Function Comment, if answer to the questions highlighted in red are correct, or not. Or if any suggestion. #include <stdio.h> int main() {     cout<<“Hello World!”;    … Read more

Find the time complexity of sum of two matrices

What is the time complexity of the program for the sum of two matrices? Step count method void sum() { int n, a[n][n],b[n][n],c[n][n],i,j; //—-0  for(i=0;i<n;i++) //—-n+1   {      for(j=0;j<n;j++) //—-n+1       {         c[i][j]=a[i][j]+b[i][j]; //—-n  … Read more