✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Suponiendo que se hace el llamado de la siguiente función f
int f(int n, int m) {
int aux = 0;
for(int i = 1; i <= n; i++){
for(int j = m; j > i; j--){
aux = j * i % j + i;
};
};
return aux;
};con los parámetros n = 6 y m = 4, es decir se hace el llamado de f(6,4), entonces ¿Qué valor retornará la función al evaluarla en dichos valores?