Posts

Showing posts from 2019

MIND TREE

1. 1 1 1 1 2  3 2 2 2 2  3 3 3 3 4  5 4 4 4 4  5 5 5 5 6  7 6 6 6 6  7 7 7 7 8  9 8 8 8 8  9 9 9 9 10 #include <stdio.h> int main() { int i,j; int n = 9; for(i=1;i<=n;i++) {     for(j=1;j<=5;j++)     {         if(i%2==0)         {             if(j==1)             {                 printf(" %d",i+1);             }             else                 printf(" %d",i);         }         else         {             if(j==5)             {                 printf(" %d",i+1);       ...

Mindtree Programming Questions with Solutions

1. C Program to check if two given matrices are identical #include <stdio.h> #define N 4 // This function returns 1 if A[][] and B[][] are identical // otherwise returns 0 int areSame(int A[][N], int B[][N]) {     int i, j;     for (i = 0; i < N; i++)         for (j = 0; j < N; j++)             if (A[i][j] != B[i][j])                 return 0;     return 1; } int main() {     int A[N][N] = { {1, 1, 1, 1},                     {2, 2, 2, 2},                     {3, 3, 3, 3},                     {4, 4, 4, 4}};     int B[N][N] = { {1, 1, 1, 1},                     {2, 2, 2, 2},   ...