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 |
Is string an object in c++?
What is runtime polymorphism in c++?
How many static variables are created if you put one static member into a template class definition?
Is there any function that can skip certain number of characters present in the input stream?
Explain the concept of memory leak?
Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
What is array give example?
How many types of comments are there in c++?
What is a built-in function?
what is meaning of isa and hsa
if i want cin 12345678910 and cout abcdefghij. so how can i create the program?. example : if i key in 8910 so the answer is ghij.
What is a linked list in c++?