Sunday 8 September 2013

How To Find Table Of Any Number In C Language

//Program to find Table of any number




Explanation:-

In this Program, we used some terms that are used in almost every program of C.
Let understand the meaning of these terms.

1.  int a,i;

 Is a variable of Integer type used to store an integer constant.



i
 Is a variable of Integer type used to store an integer constant.



 Is a variable of Integer type used to store an integer constant.


Variable:- An entity (it can be anything which exists in real world) that may vary during program execution is known as variable.
Variable names are the names given to locations in memory.


Tuesday 3 September 2013

The Sleeping-Barber Problem

The Sleeping-Barber Problem:

A barbershop consists of a waiting room with n chairs, and the barber room containing the barber chair. If there are no customers to be served, the barber goes to sleep. If a customer enters the barbershop and all chairs are occupied, then the customer leaves the shop. If the barber is busy, but chairs are available, then the customer sits in one of the free chairs. If the barber is asleep, the customer wakes up the barber.

Write an interactive program in C / C++ to synchronize/coordinate the barber and the customers.

Click on Read More to view program in C to synchronize the barber and the customers.