From c7a50927b74e76e511f70253a4828f57fa9c581c Mon Sep 17 00:00:00 2001 From: Mann Mehta <44433995+mann2108@users.noreply.github.com> Date: Thu, 2 Apr 2020 04:07:01 +0530 Subject: [PATCH] resolve compile 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 0f9d442a5..512365c4a 100644 --- a/math/binary_exponent.cpp +++ b/math/binary_exponent.cpp @@ -20,6 +20,6 @@ int main() { /// Give two nos as a^b (where '^' denotes power exponent operation std::cin >> a >> b; ///Result of a^b - std::cout << binExpo(a,b) << endl; + std::cout << binExpo(a,b) << std::endl; }