#include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char* argv[]) { float a = 81; float res = powf(a, 1.0f / 3.0f); printf("%f\n", res); res = sqrtf(a); printf("%f\n", res); return 0; }
If you find our content useful and has helped you in the past, you can help the CodeVault community grow by becoming a CodeVault supporter