Skip to content

Instantly share code, notes, and snippets.

@alsamitech
Created September 1, 2021 20:37
Show Gist options
  • Save alsamitech/f1d9ed716eb67cefa91c8c7494318a0e to your computer and use it in GitHub Desktop.
Save alsamitech/f1d9ed716eb67cefa91c8c7494318a0e to your computer and use it in GitHub Desktop.
longpow - exponent function in 3 lines
long longpow(const long val, long pw){
long res=val;
while(--pw)res*=val;
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment