Resolve type error

This commit is contained in:
Mann Mehta 2020-04-02 04:10:26 +05:30
parent 55ff267e5e
commit 4828788897

View File

@ -18,7 +18,7 @@ int binExpo(int a,int b) {
int main() {
int a,b;
/// Give two nos as a^b (where '^' denotes power exponent operation
/// Give two nos as a^b (where '^' denotes power exponent operation)
std::cin >> a >> b;
///Result of a^b
std::cout << binExpo(a,b) << std::endl;