Vector

// vector<data_type> vector_name;
vector<int> Hallway(9);
vector<int> Hallway;
vector<int> Hallway {1,2,3,4,5};
vector<int> Hallway = {1,2,3,4,5};
vector<double> grade;
vector <char> Alpgrade;
vector<string> cars {"Jame","Jack","John"};ฟังก์ชันที่เกี่ยวข้องกับเวกเตอร์คือ:
ฟังก์ชันที่ถูกใช้บ่อยที่สุด
Last updated
Was this helpful?

