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 |
List the features of oops in c++?
Where can I run c++ program?
What do you mean by public protected and private in c++?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
Do vectors start at 0?
Is c++ a pure oop language?
What is the use of dot in c++?
Describe linkages and types of linkages?
What is struct c++?
What happens if an exception is throws from an object's constructor and from object's destructor?
What is c++ hiding?
What character terminates all character array strings a) b) . c) END