multi initialisation if statement c 2b 2b

Solutions on MaxInterview for multi initialisation if statement c 2b 2b by the best coders in the world

showing results for - "multi initialisation if statement c 2b 2b"
Carlos
20 Sep 2019
1// Only variables of the same type can be initialised in for-loop declaration
2for(int x = 10, y = 20, z = 50; x < 30; ++x, ++y, ++z)
3{
4  // Do something
5}