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 |
Explain virtual functions in C++.
Is string an object in c++?
Is there a c++ certification?
How to avoid a class from instantiation?
How do you print for example the integers 3,2,1,5,4 in a binary tree within the console in format where it looks like an actual binary tree?
What is a volatile variable in c++?
What is virtual table?
difference between the c++ and c languages
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
What is size of Empty Class?
Explain stack unwinding.
What is the best book for c++ beginners?