Given the following code, write statements to complete the function definition of function 1 and function 2.
class CD
{ public:
CD ( ) // function 1
{
..........
}
CD (int no, char n[ ] ) // function 2
{
...........
}
private:
int cdno;
char Title[20];
};