Advertisements
Advertisements
प्रश्न
Answer the question after going through the following class.
class Book {
int BookCode ; char Bookname[20];float fees;
public:
Book( ) //Function 1
{ fees=1000;
BookCode=1;
strcpy(Bookname,"C++"); }
void display(float C) //Function 2
{ cout<<BookCode<<":"<<Bookname<<":"<<fees<<endl; }
~Book( ) //Function 3
{ cout<<"End of Book Object"<<endl; }
Book (intSC,char S[ ],float F) ; //Function 4
};
Write the definition for Function4.
टीपा लिहा
उत्तर
Book: :Book (int sc.char.s[], float, F) // Function 4
{
Book Code = SC
strcpy (Book name, S);
fees = F;
}
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?