Sum of lower triangular elements using DMA - C

Write a 'C' Program to calculate sum of lower triangular elements of m X n  matrix by using dynamic memory allocation.

Solution:

#include<stdio.h>
#include<stdlib.h>
int main()
{
      int **a, row,col,i,j,s=0;
      printf("Enter Limit for Rows : ");
      scanf("%d",&row);
      printf("\nEnter Limit for Columns : ");
      scanf("%d",&col);
      a=(int **)malloc(row*sizeof(int*));
      for(i=0;i<row;i++)
      {
            a[i]=(int *)malloc(col*sizeof(int));
      }
      printf("\nEnter elements for matrix of size %d*%d:\n\n",row,col);
      for(i=0;i<row;i++)
      {
            for(j=0;j<col;j++)
            {
                  scanf("%d",&a[i][j]);
            }
      }
      printf("\n%d*%d Matrix : \n\n",row,col);
      for(i=0;i<row;i++)
      {
            for(j=0;j<col;j++)
            {
                  printf("%3d ",a[i][j]);
            }
            printf("\n");
      }
      printf("\nLower Triangular Elements :\n");
      for(i=0;i<row;i++)
      {
            for(j=0;j<col;j++)
            {
                  if(i>j)
                  {
                        printf("%d ",a[i][j]);
                        s=s+a[i][j];
                  }
            }
            printf("\n");
      }
      printf("\nSum of Lower Triangular Elements = %d",s);
      return 0;
}


Output:

sum lower triangular element