There is no need for two variables since v can be expressed as i+10. But in keeping with your example, you could use
for (i=0, v=10; i <= 10; i++, v++)
{
cout << i << " " << v '\n';
}
You will have much better luck discussing C and C++ questions in the forums dedicated to those topics.