0

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;
}

0 Answers0