what is the meaning of the expression for(int l:list)
if list is the stl
Meaning of expression variable:list/vector
can you share the code of which you are talking about
in graphs lecture 6 at 10:01 line no 60
It means that list is the array and l is the element in the list index by index
Like list is 0 1 2 3
So it will output
0 1 2 3 index by index
It is the new type of for loop