Torikustori.hashnode.dev·Aug 24, 2024Vector [note]Iterators begin() and end() নাম দেখেই বুঝতেছো begin = শুরু; end = শেষ। অর্থাৎ একটা ভেক্টরের শুরুর এলিমেন্ট কে begin() এবং শেষ এলিমেন্টকে নির্দেশ করে end() vector<int> v = {1, 2, 3, 4, 5}; vector<int>::iterator it; it = v.begin(); cout << "first el...standard template libraryAdd a thoughtful commentNo comments yetBe the first to start the conversation.