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