DATA STRUCTURES
-
What are programming languages
What are programming languages Language is a instrument of communication means it is the way through which we can communicate…
Read More » -
What is software
What is software? A computer cannot do anything on its own. We need to give instructions to it to make…
Read More » -
Trees
Tree Tree is a non linear data structure. it is the collection of entities which are known as nodes linked…
Read More » -
Stack data structure using linked list in C programming with menu
Stack data structure using linked list in C programming with menu // stack using linked list#include <stdio.h>#include <stdlib.h>struct stackItem{…
Read More » -
write a c program print fibonacci series using recursion
Fibonacci series using recursion? #include int fib(int n){ if (n
Read More » -
circular linked list
Circular Linked list: A circular linked list is a collection of elements in which every element has a link to…
Read More »