Thursday, April 18, 2024
Home Authors Posts by Team MCK

Team MCK

Create a Linked List

0
/*C code to create and print the Linked List*/ #include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *next; } NODE; NODE *head = NULL; NODE *newNodeF(int key) { NODE *temp =...

Linked List Traversal

0
The printList() function takes a linked list as input and prints the elements of the list till NULL pointer is encountered. Here the traversal...

Aptitude

0
Aptitude Average Average Set I Average Aptitude Test Paper 1 Number Series Number series Set I Number series Set II Simple Interest Simple Interest set...

Queue

0
A Queue is a data structure that stores the data elements in a sequential manner. It is also called FIFO( First In First Out)...

Linked List

0
A Linked List is the data structure that consists of nodes containing data and a pointer to the next node. - The node points to...

Array

0
An Array is a collection of homogeneous items, i.e. it stores data elements having sane data type. It stores elements in contiguous memory locations. A...

Introduction to HTML

0
HTML stands for HyperText Markup Language. It is a standard markup language for web page creation. It allows the creation and structure of sections,...

What is Digital Marketing?

0
Digital Marketing is the demonstration of selling items and administrations through mediums like social media, SEO, email, and mobile applications. Fundamentally, advanced promoting is...

Latest Post

Simple Interest set 1

Number Series Set II

Aptitude