From 48287888973106ee513219eb60a1c70a01e42cf1 Mon Sep 17 00:00:00 2001 From: Mann Mehta <44433995+mann2108@users.noreply.github.com> Date: Thu, 2 Apr 2020 04:10:26 +0530 Subject: [PATCH] Resolve type error --- math/binary_exponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/binary_exponent.cpp b/math/binary_exponent.cpp index c193b79b9..a8f45e3c5 100644 --- a/math/binary_exponent.cpp +++ b/math/binary_exponent.cpp @@ -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;