MENU
Question -

Write the definitionof a class PIC in C++ with following description :  
Private Members
— Pno // Data member for Picture Number (an integer)
— Category // Data member for picture category (a string)
— Location // Data member for Exhibition Location (a string)
— FixLocation // A member function to assign // Exhibition Location as percategory // as

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 ( )
 {
 cout<
 }

Comment(S)

Show all Coment

Leave a Comment

Free - Previous Years Question Papers
×