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 we cant create array of refrences
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.
What is the best c++ book for beginners?
What is data hiding c++?
How many types of comments are there in c++?
What do you mean by translation unit?
Is it possible to pass an object of the same class in place of object reference to the copy constructor?
What is the use of cmath in c++?
Do you know the problem with overriding functions?
i want the NIC programmer-B model papaer pattren, iwant the all model papers?
There is a magic square matrix in such a way that sum of a column or a row are same like 3 5 2 4 3 3 3 2 5 sum of each column and row is 10. you have to check that matrix is magic matrix or not?
Do class method definitions?