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 class invariant?

1 Answers  


Is c++ a float?

0 Answers  


What is Namespace?

5 Answers   HCL, Samsung,


How would you use qsort() function to sort an array of structures?

0 Answers  


What is meant by iomanip in c++?

0 Answers  






What is name mangling?

3 Answers  


What is the use of endl?

0 Answers  


Explain about Virtual Function in C++?

0 Answers  


How do you declare a set in c++?

0 Answers  


What are the important differences between c++ and java?

0 Answers  


What is c++ iterator?

0 Answers  


What is format for defining a structure?

0 Answers  


Categories