How to use array of structures (struct) in C++

1 Answer

0 votes
#include <iostream>
#include <string>

using std::cout;
using std::cin;
using std::endl;
using std::string;

#define TOTAL 3

struct user {
	string name;
	int age;
} users[TOTAL];

void print(user u) {
	cout << u.name << " " << u.age << endl;
}

int main()
{
	string s;

	for (int i = 0; i < TOTAL; i++) {
		cout << "Enter name: ";
		getline(cin, users[i].name);
		cout << "Enter age: ";
		getline(cin, s);
		users[i].age = stoi(s);
	}

	for (int i = 0; i < TOTAL; i++)
		print(users[i]);

	return 0;
}



/*
run:

Enter name: Axel
Enter age: 61
Enter name: Ash
Enter age: 43
Enter name: Etta
Enter age: 50
Axel 61
Ash 43
Etta 50

*/

 



answered May 24, 2018 by avibootz
edited May 24, 2018 by avibootz

Related questions

1 answer 123 views
1 answer 104 views
1 answer 114 views
1 answer 159 views
159 views asked Dec 30, 2021 by avibootz
...