Home Authors Posts by Team MCK

Team MCK

HTML Layout

0
Websites/ Web pages may contain multiple columns. HTML layout provides a way to arrange web page in a well structured manner. It gives the...

C program to Find the Sum of two Matrices

0
C program to Find the Sum of two Matrices Problem Statement: Given two multi-dimensional arrays, also called as matrices, find their Sum. // C program to...

Doubly Linked List

0
Doubly Linked List Problem Statement: Write a Menu driven program for Doubly Linked List with following functionality- i. Insert node at Beginning ii. Insert node at End iii....

Move last element to front of a given Linked List

0
Move last element to front of a given Linked List Problem statement: Given a Singly linked list, move the last element to the front of...

Circular Linked List

0
In Circular Linked list any node can be the starting point. The last node points to the head node. It can be used in understanding...

HTML Lists

0
HTML lists tag allows developer to list the set of related items. There are two type of lists: 1. Ordered list An Ordered list starts with...

HTML Styles

0
HTML Styles <!DOCTYPE html> <html> <head> <title>HTML styles</title>title> </head> <body> <p>I am normal</p> <p style="color:red;">I am red in color</p> <p style="color:green;">I am green in color</p> <p style="font-size:100px;">I am big in size</p> </body> </html> HTML Background color <!DOCTYPE html> <html> <head> <title>HTML...

Loop Control Structures in C

0
Loop Control Structures in C
Loop Control Structures in C Sometimes we may come across a case where we need to perform a task multiple times. In that case we...

Conditional Flow Control Structures in C

0
Conditional Flow Control structures in C
Conditional Flow Control Structures in C There may be a situation where we have to choose one of the alternative paths depending upon the result...

Split nodes of a linked list into two halves

0
Split nodes of a linked list into two halves Problem statement: Given a linked list split it into two halves, front and back. If the...

Latest Post