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 number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
If all is successful, what should main return a) 0 b) 1 c) void
Explain the concept of memory leak?
In a function declaration, what does extern mean?
Is swift faster than go?
How do you sort a sort function in c++ to sort in descending order?
Is oops and c++ same?
How do I tokenize a string in c++?
What are the types of pointer?
Do inline functions improve performance?
What is problem with overriding functions?
Why the usage of pointers in C++ is not recommended ?
What is flush () in c++?
what are the events occur in intr activated on interrupt vector table
Which bit wise operator is suitable for checking whether a particular bit is on or off?