How to write Multithreaded applications using C++?
Answer Posted / 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 |
Post New Answer View All Answers
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
Explain the use of vtable.
Write a recursive program to calculate factorial in c++.
What is the use of cmath in c++?
Is c++ double?
Specify some guidelines that should be followed while overloading operators?
What is the type of 'this' pointer? When does it get created?
How can I learn c++ easily?
Why do we use double in c++?
What is the difference between an external iterator and an internal iterator?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What are the advantages of c++ over c?
Why is the function main() special?
When to use “const” reference arguments in a function?
Explain abstraction.