#include <stdio.h>
#define SIZE 5

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

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

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

printf("sum = %d\n", y);
}

+ Recent posts