Here's a for loop that populates an array in C++ with NUM_GUESSES integers:```
#include
using namespace std;
int main() {
const int NUM_GUESSES = 3;
int userGuesses[NUM_GUESSES];
int i = 0;
for (i = 0; i < NUM_GUESSES; ++i)
{
cin >> userGuesses[i];
}
for (i = 0; i < NUM_GUESSES; ++i)
{
cout << userGuesses[i] << " ";
}
return 0;
}
```This program will ask the user to enter three integers and store them in the array `userGuesses`. The `for` loop runs `NUM_GUESSES` times (in this case, 3 times), and each time it prompts the user to enter an integer using `cin`, and stores it in the array at the current index (`userGuesses[i]`). Finally, it loops through the array again and prints out each integer that was entered by the user, separated by spaces.The output will look like this if the user enters 9, 5, and 2:```952```
To know about integers visit:
https://brainly.com/question/15276410
#SPJ11