Hello,
I am learning to use Borland Builder 6.0 (and trying to remember/learn to use C++ after taking a college course in C programming nine years ago). I have created a data structure. When I try to delete it using:
delete films;
I am told that deleting an object requires exactly one conversion to pointer...
I wish I knew what this means. More fundamentally, I wish I knew how to modify the following structure definition in a manner that will permit me to delete it (and thus serve as a guide in the future).
struct movies
{
char title[10];
int year;
};
movies films;
Please accept my thanks in advance for any assistance that you provide.