for(auto c:s1){
cout<<c <<",";
}
i am not able to understnd the impleemention of this
How is this for loop working
Hey
Here s1 denotes the string or vector or array you’re iterating upon, c starts from the first element and goes till last element, printing this just prints the whole array/string/vector
it’s just a short syntax for
for(int i = 0; i < s1.size(); i++){
cout << s1[i] << “,”;
}
You can use any of them.
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.