This material is part of the course Practical Introduction to Parallel Programming and meant for educational purposes only.
Task
Implement a program that spawns eight threads, each of which prints its identifier three times.
Use the function sleep
to pause one second after each printed line:
for ( i = 0; i < 3; i++ ) { printf ( "I am thread ...\n" ); sleep ( 1 ); }