✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the time complexity of this function?
void printValues(int N) {
for(int i = N; i >= 0; i--){
for(int j = 0; j < N; j++)
cout << i * j << endl;
}
}