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 |
What is an orthogonal base class in c++?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
Write a Program for find and replace a character in a string.
How would you implement a substr() function that extracts a sub string from a given string?
What is a static member?
How does java differ from c and c++?
What is the benefit of c++?
Differentiate between realloc() and free().
What is constructor in C++?
How would you find out if a linked-list is a cycle or not?
How do you link a C++ program to C functions?
Can we sort map in c++?