Question:
I’ve writen a program that simulates a heat circulation, and one of its functions performs an optimization processwhich uses a lot of dynamic memory. Myquestion is, can I use this function exactly in a Windows application, or must I change it? I forgot to mention that I used malloc and.. NOT new and…
Answer:
You simply need to re-compile the program as a Win32 Console Application. There should be no problem with using malloc and free instead of new and delete.
However, if your app uses DOS features such as the “dos.h” header or DOS-specific functions that are now obsolete, your code will need more substantial changes.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.






















