#include #include using namespace std; struct City { string name; string zip; }; static int round; // declarating function prototype void getcity(struct City city); int main() { // Adding data in sequnce City city1 ={ "Badle", "60108" }; City city2 ={ "Roselle", "60109" }; // sending struct as a parameter getcity(city1); getcity(city2); return 0; } void getcity(struct City city) { round++; cout <<"\n City # " << round << ": " ; cout << city.name <<" --" << city.zip; }