Hey guys, I was just wondering when using classes to obtain a name or something like that when a pointer is used how come you don't have to use the new and delete key words.
class LibBook
{
private:
char *name
public:
LibBook( char* = '\0')
void showBookName()
};
Thanks in advance.