C++ Programming Question:
What is the difference between Mutex and Binary semaphore?

Answer:
semaphore is used to synchronize processes. where as mutex is used to provide synchronization between threads running in the same process.
Previous Question | Next Question |
Will this C++ program execute or not? | In C++, what is the difference between method overloading and method overriding? |