terminating threadsYou can design thread so that it is possible to terminate it from outside at anytime if you add all ...
Array of ofstream objectsThere is system limit of number of filedescriptor per program. Default is 1024. You can check you...
merge sorting usnig processI think you are looking for this: std::stable_sort(my_data.begin(), my_data.end()); Then you...
Creating interrupt handler to remove pipehttp://en.wikipedia.org/wiki/Signal_(computing) You have to register signal handler function usin...
Type casting and function parameters[code]unsigned char a = 6, b=5; short c = b-a; // c is 255 [/code] You get underflow with ...
This user does not accept Private Messages