what is multithreading in c++ ,
what is difference between multithreading and
singlethreading.
Answer Posted / lp
C++ allows to to build your own multi-threading libraries by
making use of system calls, but there is no standardized
support for multi-threading. Reasons? Following are the few
of them:
1. You decide the performance of your system by designing
simplified wrappers over the system call to support
multithreading. Get-What-You-Want and Pay-For-What-You-Want,
Dont-pay-for-what-you-dont-want!!
2. Standardizing support may hide some powerful system
level functionality unique to a a particular
multi-threaded-processor!
| Is This Answer Correct ? | 19 Yes | 4 No |
Post New Answer View All Answers
What do you mean by Encapsulation?
What is polymorphism in oop example?
What does it mean when someone says I oop?
What is multilevel inheritance in oop?
What is polymorphism programming?
What is encapsulation c#?
What is destructor in oop?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
Which method cannot be overridden?
Why do we use oops?
What are constructors in oop?
Why interface is used?
What are the three main types of variables?
What polymorphism means?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)