Here is an example of a basic for loop in C++:
for (int i = 0; i < 10; i++) {
cout << i << endl;
}
This loop will print the numbers 0 through 9. It initializes the variable i to 0, checks that i is less than 10 for the condition, and increments i by 1 each iteration via i++.