003 Linux System ProgrammingIssues, queries and suggestions related to Linux, Linux Programming, IPC, Interprocess Communication, Synchronization, Semaphore, System Programming, Linux Software Development. » 003.11.POSIX-Threads
11.What is the purpose of the `pthread_create()` function in POSIX threads, and how does it contribute to concurrent execution in multi-threaded programs?
a. Give explanation about your understanding of the purpose and role of `pthread_create()` in enabling concurrency.
pthread_create() is API which is used to create a new thread in multi-threading program.This function allow to initiate a seperate thread within same process running independently from the calling thread.