1 Program to Scan adjacency matrix from user. Create an Adjacency List from it. Check the possibilities of directed, undirected, weighted, non-weighted.

Program: /* Q1-Scan adj matrix from user.Create an adjacency list from it. Check the possibilities of directed,undirected,we...
Read More

1 - Program to Create a Simple Binary Tree and Perform Recursive Traversal With Search and Count Function

Program: /* Q1.WAP to create a simple binary tree and implement following functions. -create() (using 0 as a terminating val...
Read More

28 Program for Disk Scheduling Algorithm (CLOOK, SSTF, SCAN) in C

Program: #include <stdio.h> #include<stdlib.h> // Function to Sort Array void sort(int arr[],int n){ for(...
Read More

26 Program for Inter-Process Communication using shared memory

Basic Working of Shared Memory: The sender sends the data and the receiver receives the data, by applying the following steps: Sender: 1) Cr...
Read More

27 Program for Inter-Process Communication using message passing mkfifo

Working of Message Passing: The Sender Process: can use write() system call to write data into the pipe. The Receiver Process: can use read(...
Read More

25 Program for Optimal Page Replacement Algorithm

Program: #include<stdio.h> #include<limits.h> // This function is just use to check if the frame is containg ...
Read More

23 Program for First in First Out (FIFO) Page Replacement Algorithm

Program: #include<stdio.h> #include<limits.h> // This function is just use to check if the frame is containg ...
Read More