How to write Multithreaded applications using C++?
Answers were Sorted based on User's Feedback
Answer / mms zubeir
Well, ISO C++ doesn't provide the mechanisms to control
over operating system devices like thread. We need to use
the support provided by the operating system SDKs or any
third party libraries. For example, Win32's CreateThread()
API would help.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / peter_2012
It depends most of for what kind of system we will use to
run application.
Linux - standard POSIX pthread library coud be used (it is
C thrading implementation),
Windows - Win32 API,
or we can use boost threading library wich provides sets of
objects for thread creation and synchronization.
| Is This Answer Correct ? | 8 Yes | 2 No |
How do you establish an is-a relationship?
What is OOPs
Which operations are permitted on pointers?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
Will rust take over c++?
How do you clear a map in c++?
Can we make copy constructor private in c++?
Can I uninstall microsoft c++ redistributable?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
Explain some examples of operator overloading?
What is a constructor in c++ with example?
Define whitespace in C++.