Hi all,
I have a problem.
I am calling a software API function in my program. The program has to loop for a fixed value and the function call is done inside the loop.
However I have a message somewhere telling me " This action cannot be completed because XXX program is not responding...
Hi all,
if I create a funtion Array2(int,int) which return a matrix and that inside the function I create the array using the NEW operator, do I need to use the DELETE operator to delete the matrix after use?
Thank you for your kind inputs.
Hi everybody,
After finishing one's application, how to make a release version with an INSTALL option so that the user can install the application?
Thank you in advance.
Thanx for your reply.
The class Stream is like this:
Stream{
private:
int NumOfNodes;
CPoint* nodes;
public:
Stream(int n);
...
};
somewhere I have an AllocNodes() function which does:
Cell= new CPoint[NumOfNodes];
That's why I was wondering if it's not necessary to...
Hi everybody,
This is really a very nice forum.Congratulations to the creators and thanx to all partipants.
So my question is after having implemented a destructor like
Stream::~Stream()
{
delete [] nodes;
}
Do I need to call it in the main() function or is it automatically called by the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.