Update math/binary_exponentiation.c

Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
Praneeth Jain 2023-10-02 11:52:43 +05:30 committed by GitHub
parent bc702a4d59
commit 2d5cae8b6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,10 +8,10 @@
* @author [Praneeth Jain](https://github.com/PraneethJain)
*/
#include <assert.h> // for assert()
#include <stdint.h> // for int64 types
#include <stdio.h> // for output
#include <stdlib.h> // for exit()
#include <assert.h> /// for assert()
#include <stdint.h> /// for int64 types
#include <stdio.h> /// for output
#include <stdlib.h> /// for exit()
/**
* @brief Determines a raised to the nth power via binary exponentiation.