Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

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 103 views
1 answer 80 views
1 answer 92 views
1 answer 113 views
113 views asked Dec 30, 2021 by avibootz
4 answers 263 views
...