Team MCK
HTML Layout
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
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
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
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
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
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
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
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
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
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...