Trending News
Loading...

Latest Articles

Learn Ethical Hacking course 2022

1. The Truth About Living in a Technology Based World 2. Overview of the CEH Certification Program 3. How to Build a Lab to Hack Safely 4. I...

Stacks Using Linked Lists

#include<stdio.h> #include<stdlib.h> typedef struct snode *sptr; struct snode {     int data;     sptr next; }; sptr top; void s...

Stacks Using Arrays

  #include<stdio.h> #include<stdlib.h> #define max 5 int top; int stack[max]; void push(int value) {     if(top==max-1)     {   ...

QUEUES Using Arrays

#include<stdio.h> #include<stdlib.h> #define size 5 int f,r; int Q[size]; void qinsert(int x) {     if(r==size-1)     {         ...

Quick Sort

#include <stdio.h> #include <conio.h> void quicksort (int [], int, int); int main() {     int list[80];     int size, i;     pri...