+ 2
Answer
the answers are bool, > and return the return statement returns true or false which is of bool datatype
2 Respostas
0
bool operator >(const Obj & a, const Obj & b){
return a.compVal > b.compVal;
}
this is c++
the answers are bool, > and return the return statement returns true or false which is of bool datatype