User profile: cppct

User info
User name:cppct
History
Joined:
Number of posts:9
Latest posts:

Exception Handling
What is the need to go for nested try-catch like as below void f() { try { //So...

Synchronization Objects
Could you please explain mutex, semaphore and condition variable with the help of example code. With...

Mutex in critical Section
Many thanks to explain with example. But as I asked earlier in meantioned code below foo() { cla...

Memory Linkage
We keep reading that if memory is not freed then there would be a memory linkage. Does it mean 1) R...

new delete malloc and free
if you mix new/delete with malloc/free i.e. with new use free and with malloc use delete, what will ...