Category: c / c++
Assume a year has 365 days, what is the probability among 50 students, that at least two having the same birthday? Let’s consider this: what is the probability that …
The COM (Component Object Model) has been existent on Windows platform e.g. Win98 for decades. It is powerful technology that allows different programming languages to easily invoke the library …
I am starting a series of code refactoring examples as I see them a lot from time to time. Today, I read the following piece of code in our …
A Sparse Matrix (SM) is a popular data structure that is used to stored two-dimension Matrix when the total the empty/zero elements are the majority in the matrix. For …
Unlike Dynamic Link Library (DLL), the static library are pre-compiled and linked to the binary executables. Once built into the final executables, the static library cannot be shared among …