C Program for Simple DSC order Priority QUEUE Implementation
C Program for Simple DSC order Priority QUEUE Implementation. Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28...
View ArticleC Program for Simple ASC order Priority QUEUE Implementation using Structure
C Program for Simple ASC order Priority QUEUE Implementation using Structure. Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23...
View ArticleC Program for Simple DSC order Priority QUEUE Implementation using Structure
C Program for Simple DSC order Priority QUEUE Implementation using Structure. Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22...
View ArticleC Program for Simple DSC order Priority QUEUE Implementation using Structure
C Program for Simple DSC order Priority QUEUE Implementation using Structure. Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23...
View ArticleC Program for implementing two Stacks on Single Array
C Program for implementing two Stacks on Single Array. Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30...
View ArticleFind the Area of shapes using function overloading
Here is a program which will find the Area of shapes using function overloading. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43...
View ArticlePalindrome checking using function overloading
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70...
View ArticleJava Program to find the IP address of the Machine
Here is a simple Java Program to find the IP address of the Machine. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import java.util.*; import java.lang.*; import java.net.*; public class GetOwnIP { public...
View ArticleFirst In First Out Page Replacement Algorithm
C program for First In First Out Page Replacement Algorithm 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 #include "stdio.h" int...
View ArticleLeast Recently Used Paging Algorithm
Least Recently Used Paging Algorithm 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58...
View Article