Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/1dfe048880cafd5107b062b24462cb5c to your computer and use it in GitHub Desktop.
Save parzibyte/1dfe048880cafd5107b062b24462cb5c to your computer and use it in GitHub Desktop.
#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