✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dado el siguiente código:
1inline bool mayor_q_7(int x) { return x > 7; } 2vector<int> v { -32, 2, 1, 5, 3, 0, 4, 2, -32 };3auto n = count_if(v.begin(), v.end(), &mayor_q_7); Indique cuál de las siguientes sentencias es correcta: