0% found this document useful (0 votes)
29 views1 page

C++ Family List Example Code

Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views1 page

C++ Family List Example Code

Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

#include <iostream>

#include <list>

using namespace std;

int main()

int tuoi = 11;

float can_nang = 44;

float chieu_cao = 1.49;

char nhom_mau = 'A';

list<int> so_nguoi_trong_gia_dinh = {1,2,3,4};

auto it = so_nguoi_trong_gia_dinh.begin();

advance(it, 3);

return 0;

You might also like