how to raise power of something in c++
How to raise power of something in c++
hey @rakesh800650 if you want to find a^b you can use pow() function, it takes input 2 integers pow(int a, int b) return a^b
how to raise power of something in c++
hey @rakesh800650 if you want to find a^b you can use pow() function, it takes input 2 integers pow(int a, int b) return a^b