Online C++ Compiler

#include <iostream> #include <set> using namespace std; int main (){ set<int> set_a = {18, 34, 12, 10, 44}; cout << "Beginning element in the set container: "; cout<< *(set_a.cbegin()); return 0; }