Download cpp source code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#include <iostream>

int main()
{
	#pragma omp parallel
	{
		#pragma omp critical(cout)
		std::cout << "Hello world from secondary thread" << std::endl;
	}
	return 0;
}