I am using the Qt sdk.. Usually i am using the pointer method to create objects..but mostly objects are running at background.. even the usuage of the objects is finished also i could not able t odelete it..
So i have to come to know..What is the diffrence between creating object with pointer and wit out pointer
If you make it "with a pointer," i.e. with new, you create it on the heap with a pointer on the stack. Without the pointer, it is declared on the stack. Hope this sort of answers your question.