Question -
Category | Location |
Classic | Amina |
Modern | Jim Plaq |
Antique | Ustad Khan |
Public Members
shown in the following table
— Enter ( ) // A function to allow user to enter values
// Pno, category and call FixLocation () function
— SeeAll ( ) // A function to display all the data members.
Answer -
class PIC
{
int Pno;
char Category [20] ;
char Location [20];
void FixLocation ( );
public :
void Enter ( ) ;
void SeeAll ( );
};
void PIC : FixLocation ( )
{
if (strucmpi (category, "Classic”)
= = 0)
strcpy (Location, "Amina") ;
else if (strcmpi (category,'' / "Modern") = = 0)
strcpy (Location, "Jim Plaq") ; else if strcmpi (category, "Antique") = = 0)
strcpy (Location, "Ustad khan");
void PIC : : Enter ( )
{
cin>>Pno; gets (Category) ;
FixLocation ( );
}
void PIC : SeeAll ( )
{
Comment(S)
Show all Coment
Leave a Comment