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
It seems that there is nothing wrong with the second program, except that you must add at the end
return 0;
If you read the value j with 2 then the result will be just 25.