#include #include #include "zipcode.h" //for class zipcode using namespace std; int main() { const zipcode<5> z5 {"10458"}; //zipcode of the Bronx Fordham const zipcode<9> z9 {"104589993"}; //zipcode of the Bronx Fordham cout << z5 << "\n"; cout << z9 << "\n"; return EXIT_SUCCESS; }