Is this possible to implement the **
operator for C++ for two numbers of integer types?
int main(){
int a = 6;
int b = 2;
int result = a**b;
}
Is this possible to implement the **
operator for C++ for two numbers of integer types?
int main(){
int a = 6;
int b = 2;
int result = a**b;
}