Why very simple "Hello World" console application uses 4 threads? Is it because I have 4 core CPU? How can I (or should I) reduce the thread count to 1?
Here is the code:
int main()
{
std::cout << "Hello world";
return 0;
}
Why very simple "Hello World" console application uses 4 threads? Is it because I have 4 core CPU? How can I (or should I) reduce the thread count to 1?
Here is the code:
int main()
{
std::cout << "Hello world";
return 0;
}