C/swaping
Expert: Zlatko - 2/26/2010
Questionhow to make multi threading in c++
AnswerHello Harshal
C++ does not have any multi-threading features built into the language. To do multi-threading you need a thread library for your operating system. For Microsoft Windows, you can use the Microsoft threading API. Look at
http://msdn.microsoft.com/en-us/library/ms684254%28VS.85%29.aspx
For Linux, you can use Posix Threads.Look at
https://computing.llnl.gov/tutorials/pthreads/
Both libraries are used from C or C++
Good luck.
Best regards
Zlatko