0
Pow() function is stored in which library
4 Respuestas
+ 2
#include<math.h>
+ 2
#include<iostream.h>
#include<conio.h>
#include<math.h>
int main()
{
int x,y,z;
cin>>x;
cin>>y;
z = pow(x,y);
return 0;
}
+ 1
It is stored in "math" library.
0
what is its syntax