Team MCK
Armstrong Number in C
C program to Check whether a Number is Armstrong or Not
A number is Armstrong, if sum of it's digit raised to power of total...
C Program to Check Whether a Number is Palindrome or Not
A number is Palindrome if the reverse of that number is equal to the original number.
Example.
consider a number 12321, where reverse...
Lab Course – HTML
Lab Course - HTML
Exercise 8 Set A
1. Create an html page with 7 separate lines in different sizes. State size of each line in...
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...