#include <stdio.h>
#define SIZE 4

void main()
{
int a[SIZE][SIZE], b[SIZE][SIZE], c[SIZE][SIZE];
int i, j, n=0;

for (i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
a[i][j] = ++n;
b[i][j] = n*n;
}

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
c[i][j] = a[i][j] + b[i][j];

printf("A = \n");

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
printf("%5d", a[i][j]);

if(j == SIZE - 1)
printf("\n");
}

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
printf("%5d", b[i][j]);

if(j == SIZE - 1)
printf("\n");
}

printf("\nC=A+B\n");

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
printf("%5d", c[i][j]);

if(j == SIZE - 1)
printf("\n");
}
}


#include <stdio.h>
#define SIZE 4

void main()
{
int a[SIZE][SIZE], b[SIZE][SIZE];
int i, j, n=0;

for(i = 0 ; i < SIZE ; i++)
{
for( j = 0 ; j < SIZE ; j++)
{
a[i][j] = ++n;
b[i][j] = 0;
}

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
b[SIZE - 1 - i][SIZE - 1 - j] = a[i][j];

printf("A=\n");

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
printf("%3d", a[i][j]);
if(j == SIZE - 1)
printf("\n");
}

printf("\nB=\n");

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
printf("%3d", b[i][j]);
if(j == SIZE - 1)
printf("\n");
}
}

#include <stdio.h>
#define SIZE 4

void main()
{
int a[SIZE][SIZE], b[SIZE][SIZE];
int i, j, n = 0;

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
a[i][j] = ++n;
b[i][j] = 0;
}
for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
b[SIZE - 1 - j][i] = a[i][j];
printf("A = \n");
for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
printf("%3d", a[i][j]);

if(j == SIZE - 1)
printf("\n");
}

printf("\nB = \n");

for(i = 0 ; i < SIZE ; i++)
for(j = 0 ; j < SIZE ; j++)
{
printf("%3d", b[i][j]);

if(j == SIZE - 1)
printf("\n");
}
}


#include <stdio.h>
#define ROW 3
#define COL 4

void main()
{
char a[ROW][COL], b[COL][ROW];
char c = 65;
int i, j;

for(i = 0 ; i < ROW ; i++)
for(j = 0 ; j < COL ; j++)
a[i][j] = c++;
for(i = 0 ; i < ROW ; i++)
for(j = 0 ; j < COL ; j++)
b[j][i] = a[i][j];
printf("A = \n");

for(i = 0 ; i < ROW ; i++)
for(j = 0 ; j < COL ; j++)
{
printf("%c", a[i][j]);

if(j == COL - 1)
printf("\n");
}

printf("\nB = \n");

for(i = 0 ; i < COL ; i++)
for(j = 0 ; j < ROW ; j++)
{
printf("%c", b[i][j]);

if(j == ROW - 1)
printf("\n");
}
}

+ Recent posts