Iam using visual studio 2010 and iam trying to use pow but it doesn't work it is keeping say >>> 1 IntelliSense: more than one instance of overloaded function "pow" matches the argument list: c:\users\toha\desktop\c++\enter_name\enter_name\enter_name.cpp
and >>> Error 1 error C2668: 'pow' : ambiguous call to overloaded function c:\users\toha\desktop\c++\enter_name\enter_name\enter_name.cpp
my program was as follows
#include <iostream>
#include<conio.h>
#include<cmath>
void main()
{
int z;
z= pow(2,2);
getch ();
}