Range-for Loop In C++ .......
The range-based-for loop is a special for loop that takes two parameters, The first one is the iterator or variable and the second one is the container or the actual object like an array.
SYNTAX :
for(VariableType VariableName : TheObject/TheContaine...
kumarjitmongal.dev1 min read