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
State the difference between pre and post increment/decrement operations.
What is the type of this pointer in c++?
What are the different types of polymorphism in c++?
What are files in c++?
Distinguish between a # include and #define.
What are the various operations performed on stack?
What is the C-style character string?
Explain the use of virtual destructor?
What are the advantages of using const reference arguments in a function?
What do you mean by translation unit?
What is abstraction in c++ with example?
Is overriding possible in c++?
What is one dimensional array in c++?
What are the 4 types of library?
What is the use of default constructor?