Guess the output
#include<stdio.h>
#include<math.h>
void main()
{
    int i,j, a[6]={15,20,3,8,4},c;
    for(i=1;i<3;i++)
    {
        for(j=0;j<2;j++)
        {
        c=hypot(a[i],a[j]);
        printf("%d\t",c);
        }
    }
}

Posted on by