I'm sorry if this is long. I feel I need to be very thorough as to where I am actually at. Right so first off I do have experience with JavaScript. Which is not the same thing, But it sure looks familiar to me.
I want to make music with C. I got his big book called "The audio programming book". It was like $60. It dose have an introduction to C in it. It all makes good sense to me so far. nothing really new.
So here's my problem... And its very simple. So simple in-fact that it doesn't seem to be covered in the book. I don't understand the relationship between my program and the speakers. my computer's audio device. I thought to myself "Alright lets start with the very basics. Let's see if we can just make a noise." And so... I have something that will make a beep.
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
printf("\a\n");
return 0;
}
So that's cute. But that's seemingly all that function is capable of. And honestly That would be rather confusing if... the thing that is meant for printing text to your screen... was also the thing you use to talk to your speakers....
I've been looking through the book. I've been looking online. I've been looking for hours. And clearly searching in all the wrong places... because literally all I can find is more of how to make your computer beep...
where is the "send to speaker"?? where do I put in the frequency? Heaven forbid the part were I tell the thing what device I would like to talk to.
Dose C simply not have any built-in functionality for sending signals to the speakers?
Do I need a Library? Do need C++? What am I missing. I don't know anything about desktop applications. All my experiences is with Internet technologies.