I need to get this program running for a class for some reason its not working
include <iostream.h>
Main()
}
{
char name [bubba joe]
char Address [6481 lake michigan dr.]
char city,state,zip code [Allendale,Mi,49401]
char phone number [616-813-9679]
cout << "enter a name: ";
cout << "enter a Address: ";
cout << "enter a city,state,zip code: ";
cout << "enter a phone number: ";
cin.get ( Name, "bubba joe");
cin.get ( Address, "6481 lake michigan dr.");
cin.get ( city,state,zip code, "Allendale,Mi,49401");
cin.get ( phone number, "616-813-9679");
cout << "you entered " << name << '\n');
cout << "you entered " << Address << '\n');
cout << "you entered " << city,state,zip code << '\n');
cout << "you entered " << phone number << '\n');
return 0;
}