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
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.
What are the basics of local (auto) objects?
What is the difference between the compiler and the preprocessor?
What do you mean by static variables?
What are arithmetic operators?
How do you invoke a base member function from a derived class in which you have not overridden that function?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
When should you use global variables?
Why do we use classes in programming?
What are static member functions?
What is the difference between public, private, and protected access?
Differentiate between late binding and early binding.
How do c++ struct differs from the c++ class?
Why do we use classes in c++?
Give an example of run-time polymorphism/virtual functions.