There are a whole bunch of questions about whether you can declare multiple variables of different types in a for-loop initializer:
- C
two variables in a for loop in CNot a dupe, misread the question- How to initialize several variables in a for (;;) loop in C?
- Is for ({statements;}; condition; {statements;}) legal C? (closely related)
- C++
- Is there a way to define variables of two different types in a for loop initializer?
- In C++ why can't I write a for() loop like this: for( int i = 1, double i2 = 0;
- Multiple Counter Problem In For Loop
- How to declare a second iterator inside a for loop?
- Is it possible to declare two variables of different types in a for loop?
- New ISO scoping rule for " for LOOP"
- Can I declare variables of different types in the initialization of a for loop?
- Error in iterator declaration in a for loop
- Commas in for loop (very similar but not identical since variables are of same type)
Clearly the C questions (resp. C++ questions) should be duped together.
Now C and C++ are quite distinct languages. However, in this case, the questions are all asking about a feature of C (technically C99) syntax that (I think) was taken unchanged into C++. Here, any answer to the C question will equally apply to the C++ one. So should these be duped into a single question for both C and C++ here?
Related: Should we close VB.NET questions as duplicates of C# questions and likewise? 's accepted answer is that a question about .NET framework features common to 2 languages warrant closing as a duplicate.

i = i++). – nhahtdh Aug 17 '12 at 5:28