I am trying to learn some C and I have an issue I can't figure out. Seems pretty simple but the below is not working.
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("%f", pow(4, 3) );
return 0;
}
Error:
Implicitly declaring library function 'pow' with type 'double (double, double)'
I have the string formatter set to float so I am not sure why I am seeing that error