User profile: srinathduraisamy

User info
User name:srinathduraisamy
Name:srinathduraisamy duraisamy
Location:Bangalore, India
History
Joined:
Number of posts:17
Latest posts:

creating n number of objects using for loop
You can use vector, create the object when ever you need and push it inside the vector. You can us...

Mutex tutorials.
Try this http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html#SYNCHRONIZATION hope it...

pointer to structure array
You have created a pointer to BIRTHDAY structure and trying to assign it with a CLIENT_RECORD struc...

Weird error by compiling pthreads program
for(int i=0; i<NUM_THREADS; i++) In c, you cannot declare the i inside the for statement. try lik...

std-C++ in QT4
You can only use methods declared as Slots for QObject::connect SLOT. quit method is declared as a ...