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
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
What are built-in functions? What is the syntax for the definition?
Can recursive program be written in C++?
Define anonymous class.
What is the main purpose of overloading operators?
What are the uses of c++ in the real world?
How many types of scopes are there in c++?
What are namespaces in c++?
What is singleton pattern in c++?
What is the difference between global int and static int declaration?
What are move semantics?
How we can differentiate between a pre and post increment operators during overloading?
What is the use of endl?
Write about the use of the virtual destructor?
Will a catch statement catch a derived exception if it is looking for the base class?