C Example - Keyboard Piano
By rajkishor09
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.
| No Photo |
The C++ Programming Language by Bjarne Stroustrup (1986, Paperback)
Current Bid: $.99
|
|
|
C Programming Language (2nd Edition) by Brian W. Kerni
Current Bid: $27.98
|
|
|
C Programming Language (2nd Edition) (Prentice Hall Software)
Current Bid: $27.48
|
Keyboard Piano Program
#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.
C programming tutorial
- How to work with Two Dimensional (2d) Arrays in C
We know how to work with an array (1D array) having one dimension. In C language it is possible to have more than one dimension in an array. In this tutorial we are going to learn how we can use two... - C Programming Lesson - Data Types in C Language
A programming language is proposed to help programmer to process certain kinds of data and to provide useful output. The task of data processing is accomplished by executing series of commands called program. A program usually contains different type - C Programming Lesson - Function in C
A function in C language is a block of code that performs a specific task. It has a name and it is reusable i.e. it can be executed from as many different parts in a C Program as required. It also ... - C Programming Lesson - Types of Function
In my previous c programming tutorial I tried to explain what the function, its advantages is and how to declare a C function. And I told you that there are five types of functions and they are: ... - C Programming Lesson - Array in C programming
An array in C language is a collection of similar data-type, means an array can hold value of a particular data type for which it has been declared. Arrays can be created from any of the C data-types int,... - How to work with Multidimensional (3D) Array in C Programming
C allows array of two or more dimensions and maximum numbers of dimension a C program can have is depend on the compiler we are using. Generally, an array having one dimension is called 1D array, array... - C Programming Lesson - File Copy Program in C
Today we are going to learn a simple file copy program in C language. As I said this is a simple file copy program so you should not expect its output like DOS copy command has. Ok lets start. The main... - A Brief History of C Programming Language
Before we start any complex program in C, we must understand what really C is, how it came into existence and how it differs from other languages of that time. In this tutorial I will try to talk about these...
Other tutorial
- How to Speed Up Internet with Google Public Domain Name Server
- How to Search in Google and Improving Google Search Results
Google, on internet, by far is the most popular search engine which is used by about 80 percent of total internet users. Google’s this popularity is because of excellent search results with extensive range... - How to share an internet connection on LAN?
If you have a fully functional LAN then net sharing is few click away, yes few clicks. I assumed that you have already a broadband connection and account configured on your PC. Just go to My Network... - What is LAN (Local Area Network) ?
LAN is acronyms of Local Area Network. LAN is required everywhere, whether it is office home or somewhere else. LAN is a small computer network (small version of internet) covering a small area like home,...
Comments
First of all thanks for appreciation anjalichugh. Actually I want instigate new C programmer psyche that they can do much more thing than doing regular programming. I think this kind of example encourages and spice up their learning process.
Turn Your PC Keyboard to Musical Keyboard
Great info I really will think about this. Thanks for sharing.
did you don't get any prototype errors in this ,
next error return statement missing.
your program i have not tested yet , but i always get this errors ,
& i always fail how to solve this error.
& program is not working on vista.
not so bad... can u pls postsometing related to hacking..
Can someone teach me how to search for a file in a folder using find first() and find next() i wrote a program on my own but it finds only for the files inside the current directory. But its not searching in other drives or directories. Please help me if you know this stuff. Thanks in advance.
really its very gud material..u done a great job sir....
keep it up..its very useful for us
its great
In 1876 a man by the name of Elisha Gray invented a musical instrument called the "musical telegraph" which was the precursor to all modern electronic musical keyboards. It was, essentially, the first electronic synthesizer, and it created sounds throught the electromagnetic oscillation of steel reeds and transmitted these sounds over a telephone line.
its not working madafakah
@Unknown : if program complied successfully and didn't produce any sound then i doubt there is no internal speaker (which beeps when PC starts). I am not talking about external sound speaker you used with media player.
It's fabolous man it's incredible. . . i can't believe that this simple small c program can make a musical instrument
i will definetly try this keep it up friendz all the best...............
Great hub in C programming language .... Nice explanation of the program in line by line way .... I like the approach ..... keep up the good work ....


anjalichugh 3 years ago
Although it sounded like 'Greek' to me, yet I spent some time in learning these tips. It seemed so interesting. Great work...and welcome to Hub Pages.