Skip to content

Instantly share code, notes, and snippets.

@annibuliful
Last active August 27, 2017 13:46
Show Gist options
  • Save annibuliful/f4bafd7467d1b5e4a718886308c39764 to your computer and use it in GitHub Desktop.
Save annibuliful/f4bafd7467d1b5e4a718886308c39764 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <math.h>
int main(){
double number;
double result;
printf("choose number: ");
scanf("%lf " , &number);
result = sqrt(number);
result = sqrt(result);
printf("%lf " , result);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment