Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 23:38
Embed
What would you like to do?
#include <math.h>
#include <stdio.h>
int main(int argc, char const *argv[])
{
double numero = 2525.60;
double raizCuadrada = sqrt(numero);
printf("La raiz cuadrada de %lf es %lf\n", numero, raizCuadrada);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment