[Solved] How to utilise all cores for C++ program [closed]

Read a good C++ programming book then see this C++ reference. Read also the documentation of your C++ compiler (perhaps GCC). Read also some operating system textbook. Consider using frameworks such as POCO or Qt or Wt. With a multi-core processor, you might use C++ threads. You’ll need to synchronize them, e.g. using mutex and … Read more