creating n number of objects using for loopYou 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 arrayYou 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 ...