Hi guys,
I wanted to know that if we are making a program eg.for music items.
Can we write the class as:
---------------------------------------------------------Code:class Music_item
{
private:
int song;
public:
Music_item(); ----> default constructor
};
Will their be any problem if we write the class and its constructor with an underscore?

