what is the difference between thread and process
Answer / vijay bisht
Thread is a smallest unit of process. In process have one
or more thread.
| Is This Answer Correct ? | 7 Yes | 2 No |
how to overload << and >> operator in c++
Describe the elements of Microsoft Word screen. Write down steps for creating, saving, retrieving, editing and printing a document.
please visit this site you'll find my question this is my homework please answer it if you can http://easyscience.org/ib/lofiversion/index.php/t36168.html
write a c++ to define a class box with length,breadth and height as data member and input value(),printvalue() and volume() as member functions.
Is there any error below, its a code to delete all entires from a map #include <map> #include iostream.h int main() { int i =0; map <int, char> TestMap; while(i<3) { TesMap.insert(TestMap::value_type(i,Test)); i++; } typedef map<int, char> :: iterator mapIter =TestMap.begin(); if(mapIter!=TestMap.end()) { TestMap.erase(mapItrer); ++mapIter; } return 0; }
Why should a c++ programmer be interested in stl?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is meant by stl in c++?
what is an algorithm in terms of STL?
what is compiler?
Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");
What is a list in c++ stl?