What is multithreading and what is its use?Whats are
multithreading techniques used in C++?
Answer Posted / pah
Threads can be used to run multiple concurrent tasks in a
single process. One use for threads is to make the user
interface responsive by running it in it's own thread and
performing heavy calculations and data manipulation in another.
C++ doesn't have any built-in multi-threading support but
you can use boost or pthread libraries for that purpose.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is polymorphism in c++? Explain with an example?
What is c++ runtime?
What is setf in c++?
Why do we use iterators?
What is a float in c++?
What is the latest c++ standard?
How do you remove an element from a set in c++?
What is lazy initialization in c++?
What do you mean by early binding?
What is a multiset c++?
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
Why c++ is created?
What is c++ stringstream?
What is nested class in c++?
What is DlgProc?