Skip to main content

Computer Keyboard Piano in C Programming Language

To accomplish this task you don’t need to buy any expensive software or hardware, only a little knowledge of C program will do and you can build your own musical keyboard software. Before we begin you need to digest some basic concept and logic we are going to use in this program. If you are one of them who spent money to learn basic of computer or any programming language then you must have heard about ASCII (American Standard Code for Information Interchange) characters or codes. We are going to use ASCII codes here. This sounds a bit difficult but it is not so.

Logic is that every alphabets on our PC keyboard has some ASCII value like capital A has ASCII value 66, B is equal to 67 and so on. So we will use these values as a frequency range like original musical keyboard has.

The C inbuilt “sound()” function will do this task for us. This “sound()” function instead of using external speaker uses internal speaker located in CPU cabinet. This internal speaker makes beep sound when we boot our PC.

Keyboard Piano Program

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include<stdio.h>
#include<conio.h>
#include<dos.h>
 
void main()
{
char ch='y';
clrscr();
printf("Press X to exit......");
while(ch !='X')
{
ch = getch();
sound(10*ch);
delay(75);
nosound();
}
}

Explanation:

Line 1-3: Very first three lines of source code include header files, among three header files “dos.h” header file has vital function which will do our task.

Line-4: Forth line is “void main()” which is the main function of our program and program execution will begin from here.

Line-5: Fifth line is opening brace of main program.

Line-6: In sixth line a character variable has been declared and initialized with character ‘y’.

Line-7: Next line clears the any previous output from output screen.

Line-8: The eighth line prints a line informing user that if he needs to close this program then he/she should press Capital X.

Line-9: Next line is a while loop which keeps looping four lines in it until we press X.

Line-10: Beginning of while loop.

Line-11: In this line of code we store the ASCII value of key pressed by user during runtime. For example if user presses ‘p’ key on keyboard then its corresponding ASCII value, 113 gets store in ‘ch’ variable.

Line-12: The “sound()” will produce sound from pc speaker and in bracket we need to set frequency at which it will buzz. Here we are multiplying 10 with ASCII value available in ch variable. You can change the constant ‘10’ in this line to different integer value and as a result it will change the sound output. Do experiment only with this value.

Line-13: Here “delay()” function determines how long the sound will last (Note: actually “ delay()” function suspends the execution of program). This is determined by value provided in bracket. In our example I have set 75 milliseconds. If you change it to 3000 then sound will be played for 3 seconds.

Line-14: The “nosound()” function works opposite of “sound()” function. It turns off PC speaker. If we won’t use this in our program then speaker will keep buzzing until we close program.

Line-15: End of while loop.

Line-16: End of “main()” function.
You can download 100% working code from Here.

Comments

Popular posts from this blog

Recursive program to insert a star between pair of identical characters

Given a string with repeated characters, we have to insert a star i.e. ” * “  between pair of adjacent identical characters using recursion. Examples: Input : aabb Output : a*ab*b Input : xxxy Output : x*x*xy Recommended: Please try your approach on  {IDE}  first, before moving on to the solution. Approach: If there is an empty string then simply return. This forms our  base condition . Else we do the following- Check if the first two characters are identical. If yes, then insert ” * ” between them. As we have now checked for identical characters at first two positions of the string so we now make a recursive call  without the first character of the string . The above approach has been implemented below: C filter_none edit play_arrow brightness_4 // Recursive CPP program to insert * between // two consecutive same characters. #include <iostream> using namespace std;     // Funct...

Count the number of objects using Static member function

Write a program to design a class having static member function named showcount() which has the property of displaying the number of objects created of the class. Explanation:  In this program we are simply explaining the approach of static member function. We can define class members and member functions as static using static keyword. Before understanding static member function, we must understand static member. When we declare a member of a class as static it means no matter how many objects of the class are created, there is  only one copy of the static member . Important points about Static : A static member is shared by all objects of the class, all static data is initialized to zero when the first object is created, if no other initialization is present. A static member function can only access static data member, other static member functions and any other functions from outside the class. By declaring a function member as static, we make it independent of any ...

C program to evaluate the net salary of an employee given the following constraints

Given the following constrains and we have to calculate net salary of an employee. Basic salary  : $ 12000 DA  : 12% of Basic salary HRA  : $150 TA  : $120 Others  : $450 Tax cuts  – a) PF :14% of Basic salary and b) IT: 15% of Basic salary Net Salary  = Basic Salary + DA + HRA + TA + Others – (PF + IT) Consider the program: # include < stdio.h > //main program int main ( ) { //variable to store values float basic , da , hra , ta , others ; float pf , it ; float net_salary ; //input required fields printf ( " Enter Basic Salary ($): " ) ; scanf ( " %f " , & basic ) ; printf ( " Enter HRA ($): " ) ; scanf ( " %f " , & hra ) ; printf ( " Enter TA ($): " ) ; scanf ( " %f " , & ta ) ; printf ( " Enter others ($): " ) ; scanf ( " %f " , & others ) ; //calculate DA 12% of Basic Salary da = ( basic * 12 ) / 100 ; //calculate PF 1...