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 the best ide for c++?
Evaulate: 22%5 a) 2 b) 4 c) 0
What are stacks? Give an example where they are useful.
What are guid?
Why do we use structure in c++?
State the difference between pre and post increment/decrement operations.
What does asterisk mean in c++?
What is a container class? What are the types of container classes in c++?
What are the various operations performed on stack?
What is meant by the term name mangling in c++?
Can I learn c++ without knowing c?
What is ios in c++?
How the endl and setw manipulator works?
Mention the ways in which parameterized can be invoked. Give an example of each.
What is the difference between a pointer and a link in c ++?