C program of √(x+y) write a C program of root x + y whole square
Answers
Answered by
0
#include<stdio.h>
{
int a,b,c,result;
scanf("%d %d",&a,&b);
c=a+b;
result=sqrt(c);
printf(%d",result);
}
INPUT:
2 2
OUTPUT:
2
THANK YOU
-----by sivaraman
Answered by
0
#include<stdio.h>
{
int a,b,c,result;
scanf("%d %d",&a,&b);
c=a+b;
result=sqrt(c);
printf(%d",result);
}
INPUT:
2 2
OUTPUT:
2
THANK YOU
-----by sivaraman
Similar questions
Science,
7 months ago
Math,
7 months ago
Computer Science,
1 year ago
Chemistry,
1 year ago
English,
1 year ago