Vecter, Getline, and struct

So when I learned c++, i've never learned vecter, getline, and struct when i learned cpp. I would like someone to teach me or tell me some basics for these three things.

thx.
Getline is explained here, under "Cin and Strings": http://www.cplusplus.com/doc/tutorial/basic_io/

Structs: http://www.cplusplus.com/doc/tutorial/structures/

Good video on vectors: https://www.youtube.com/watch?v=SGyutdso6_c

Try learning these and writing a short program incorporating all three.
Hi Arslan7041, thanks for those links for helping. Though I still didn't get how to use struct...
Is it like three different things can use 2 different members? i still didn't get it... thanks for helping...
closed account (LNboLyTq)
@WheatFieldOnFire
Can you create a simple struct?
1
2
3
4
5
6
struct A
{
    int a;
    double b;
    char c;
};
Topic archived. No new replies allowed.