Update math/power_of_two.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Neha Hasija 2020-10-22 14:50:05 +05:30 committed by GitHub
parent 63be7addc2
commit f76c1009d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,6 +62,6 @@ int main() {
std::cout << "enter a number " << std::endl;
std::cin >> n;
/// function call with @param n
power_of_two(n);
math::power_of_two(n);
return 0;
}