How to write Multithreaded applications using C++?
Answer Posted / mms zubeir
Well, ISO C++ doesn't provide the mechanisms to control
over operating system devices like thread. We need to use
the support provided by the operating system SDKs or any
third party libraries. For example, Win32's CreateThread()
API would help.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What are structures and unions?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Explain selection sorting?
What is object in c++ example?
Define Virtual function in C++.
What is ostream in c++?
What are register variables?
What are c++ templates used for?
Is facebook written in c++?
What is a pointer how and when is it used?
Explain how functions are classified in C++ ?
Define a nested class. Explain how it can be useful.
Can non-public members of another instance of the class be retrieved by the method of the same class?
Explain the uses of static class data?