#include <math.h> #include <stdio.h> int main(){ int x = 8; double y = -1; y = pow(x, 1.0/3); printf("%f", y); return 0; }