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
Define the process of error-handling in case of constructor failure?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
What are function prototypes?
Why is c++ a mid-level programming language?
What is the first name of c++?
What is the benefit of c++?
How do you establish a has-a relationship?
Const char *p , char const *p What is the difference between the above two?
What does ctime() do?
What is difference between c++ 11 and c++ 14?
What is type of 'this' pointer?
Which coding certification is best?
When can I use a forward declaration?
What can I use instead of namespace std?
What is object in c++ example?