vector<int> v{10,21,24,13}; int random = rand() % v.size(); int sel_elem = v[random]; cout<<"Selected Element: "<<sel_elem<<endl;