Can I print a vector in C ?
Printing all elements without for loop by providing element type: All the elements of a vector can be printed using an STL algorithm copy(). All the elements of a vector can be copied to the output stream by providing elements type while calling the copy() algorithm. Can you print out a vector? Printing all elements without for loop by providing …