Category: c / c++
Given an array of positive integers from 1 to n, where n is the size of the array, find the missing numbers if any numbers can only appear in …
OpenMP (www.openmp.org) makes writing the Multithreading code in C/C++ so easy. OpenMP is cross-platform can normally ben seen as an extenstion to the C/C++, Fortran Compiler i.e. OpenMP hooks …
The Model-View-Controller (MVC) is not a technology, but a concept in software design/engineering. The MVC consists of three components, the Model, the View and the Controller, as illustrated in …
The Dynamic Link Library (DLL) is stored separately from the target application and shared among different applications, compared to Static Library. The DLL is the file extension on Windows …
In C#, there is async and await that allows you to write asynchronous code easily e.g. doing some calculations while fetching some data from I/O. Asynchronous code improves the …