i am using code block for learning c. my code is
#include #include int main() { int x; x = pow(5,2); printf(\"%d\", x); } Out
Using your code i got result 25 which is correct. Although Try changing the data type of result such as float or double.