Does any one know how to change the logos of your programs in the explorer window?
How do you destroy an array from memory so can free up more room.
James
This is a discussion on logos and variables within the C++ Programming forums, part of the General Programming Boards category; Does any one know how to change the logos of your programs in the explorer window? How do you destroy ...
Does any one know how to change the logos of your programs in the explorer window?
How do you destroy an array from memory so can free up more room.
James
My site to register for all my other websites!
'Clifton Bazaar'
if you use the "heap" method...
Code:// i am pretty sure that this line is wrong, so you would have to find how to do this line somewhere else... new double number; // this is the line where you free up the memory... delete number; // As you can see, the new operator creates the memory for the variable and the delete operator frees it up
Please direct all complaints regarding this post to the nearest brick wallHave a nice day.