What is multithreading and what is its use?Whats are
multithreading techniques used in C++?



What is multithreading and what is its use?Whats are multithreading techniques used in C++?..

Answer / 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

More C++ General Interview Questions

What is std :: flush?

0 Answers  


What are compilers in c++?

0 Answers  


What are the different data types present in C++?

1 Answers  


Which algorithm do you like the most? Why?

2 Answers   Google,


Which software is best for coding?

0 Answers  






What do you mean by const correctness?

0 Answers  


What is virtual constructor paradigm?

5 Answers   HCL, HP,


Why would you make a destructor virtual?

3 Answers   Lehman Brothers,


Is c++ still in demand?

0 Answers  


What is the use of cmath in c++?

0 Answers  


What are 2 ways of exporting a function from a dll?

0 Answers  


What is prototype in c++ with example?

0 Answers  


Categories