Apurba PaulJan 6, 20202 min readFundamentals of Computer_1: Generation of ComputerGenerations of Computers A generation of computers refers to the specific improvements in computer technology with time. In 1946,...
Apurba PaulJan 6, 20203 min readFundamentals of Computer_1: Fundamentals of Computer & History of Computer
Apurba PaulAug 24, 20192 min readImplementation of Priority Queue using Linked List#include<stdio.h> #include<stdlib.h> int MAX=0;//Max elements in the queue typedef struct mynode { char info; int pri; struct mynode...