largest element in vector c 2b 2b

Solutions on MaxInterview for largest element in vector c 2b 2b by the best coders in the world

showing results for - "largest element in vector c 2b 2b"
Hana
10 Oct 2019
1// Find the max element 
2cout << "\nMax Element = "
3  	 << *max_element(a.begin(), a.end());