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 |
Why is null pointer used?
What is a node class in c++?
What are the conditions that have to be met for a condition to be an invariant of the class?
What are c++ tokens?
What is a hash function c++?
What is class syntax c++?
How Virtual functions call up is maintained?
What are the various storage classes in C++?
when can we use virtual destructor?
7 Answers HCL, HP, Virage Logic,
What is the use of structure in c++?
What is multithreading and what is its use?Whats are multithreading techniques used in C++?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard