#include <stdio.h>
#include <math.h>
int main() {
float x1=4, x2=5, y1=5, y2=7, resultado;
resultado=sqrt(pow(x2-x1,2)+pow(y2-y1,2));
printf("Su resultado es:%f", resultado);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: