Computer Science, asked by manishchaudhary8092, 1 year ago

C program of √(x+y) write a C program of root x + y whole square

Answers

Answered by brendonsiva2918
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 brendonsiva2918
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