Skip to content

Instantly share code, notes, and snippets.

@annibuliful
Created August 26, 2017 15:47
Show Gist options
  • Select an option

  • Save annibuliful/9959dd55c2b08652893e4eb6e64ab689 to your computer and use it in GitHub Desktop.

Select an option

Save annibuliful/9959dd55c2b08652893e4eb6e64ab689 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 = pow(number , 0.25);
printf("%lf " , result);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment