Chess Game program in C language

Chess Game program in C language   #include<stdio.h> #include<conio.h> #include<graphics.h> void blk(int,int); void display(); //enum bool{TRUE,FALSE}; /*void main() //MAIN FUNCTION

Read more

Basics of file handling in C language

Basics of file handling in C language There are two types of files, which can be handled through C programming

Read more

Bubble Sort Algorithm

Bubble Sort : Overview Bubble sort is considered the simplest sorting algorithm. Bubble Sort is used to sort a given

Read more

an algorithm for making a cup of tea

What is algorithm An algorithm is step by step description of the method to solve a problem. It is an

Read more

An algorithm to find the largest among three different numbers

How to start writing algorithm : Step by Step solve the problem Problem Description – Find description of the problem. Problem

Read more