✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int que_faig (int n){
while (n > 0){
cout<< n%10;
n = n/10;
}
return n;
}
sempre retornarà 0Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!