Program to find the day of the week for a given date
The Gregorian calendar was adopted in 1582. A C Program to find the day of the week for a given date as per Gregorian calendar is explained.
The Gregorian calendar was adopted in 1582. A C Program to find the day of the week for a given date as per Gregorian calendar is explained.
How to do interprocess communication using the POSIX shared memory calls is explained with example client-server programs.
How to do interprocess communication using the System V shared memory calls is explained with example programs.
A queue is a common first-in first-out data structure. An implementation of queue in C language using a linked list is explained.
POSIX threads, or pthreads, provide multiple flows of execution within a process. pthreads synchronization is explained with example program.
POSIX threads, aka pthreads, provide concurrent control flow within a process. pthreads are explained with an example program.
POSIX semaphores provide a mechanism for interprocess synchronization. POSIX named and unnamed semaphores are explained with example programs.
System V semaphores provide a mechanism for process synchronization. System V semaphores and associated system calls are explained.