Archives
Memory Leak detection with Microsoft Visual C++ – Part 2
In this post, we look at how we get detailed memory leak reports from every of our source file. It’s a very simple and useful way to get the debug heap manager to report the leaks, unless you’re into writing your own memory manager.
Read More...How-To: Limit an application to one instance in C++
Limiting an application to one instance can be a very important feature. We won’t want to have multiple Windows Live Messengers running at the same time. That applies to our chatting applications or any related applications that need this feature. In this post, we look at how to write a simple class to limit the application to one instance only in C++.
Read More...Creator’s Labo #16: Jingai Makyō’s Ignis – Red & Black – (Yamato)
This application has failed to start because the application configuration is incorrect.
Seeing this error is annoying. We’d encounter this error more than often when we try to run our application on another computer, especially for application compiled with Visual Studio C++ 2005/2008. In this post, we’ll learn about the various ways we could use to solve this error.
Read More...Function Types in C++
In C/C++ programming, there are four categories of function calls. Knowing which to use will improve your code readability and application execution speed. This post helps you to understand the differences between them.
Read More...Pointers and Const in C/C++
In C/C++ programming, the placing the keyword “const” with a pointer can be tricky. There are various ways of declaring a constant with a pointer. In this post, we look at the variants in detailed. It’s also a popular interview question too.
Read More...
Recent Comments