Correct Answer: This is a common error while compiling C program in Linux This error occurs when you are using pthread_create function to create threads in your programs To fix this problem ensure following points: Include header file pthreadh in your program Add –lpthread linker flag with compilation command 1- Include Header file #include #include 2- Compile command gcc mainc -o main -lpthread