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 are the main features of c++?
Difference between declaration and definition of a variable.
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
What is an undefined behavior and sequence points
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
What is a pointer with example?
What are register variables?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Can class objects be passed as function arguments?
Why seem interrupt handlers as member functions to be impossible?
Is swift better than c++?
what is the difference between overloading & overriding? give example.