I use to do programming in high but i stop for a while but i want to get back in thge programming field. I spoke to a school in the USA about doing Software Development with a aim of doing custom design software for business, etc. I mention to the person that i use to do this in school and stop but i want to get back at it and i was using C++ in programming. He told me C++ is out dated and Java is the way to go.
I have no idea what you mean by library, I'm just creating a simple C++ program.
And I'm not detecting mouse pressure, I'm detecting keyboard pressure.
You have to use a library to do this, even if it is your operating system's native library. C++ was designed so that it could run on operating systems with no screen or keyboard, so there is no way to do this without using a library.
A library is a 'code bundle' that you use with your own code. It's basically somone else's group of functions and classes pre-written just for you so you don't have to write it all yourself.
The library you need to use is completely up to you, though obviously you would not use a sound library to display graphics.
You don't 'implement' libraries. Normally you either include a header file and link to a library file and maybe a DLL, or you import the library's source code directly into your project.
Oh okay, now I see what you mean.
Now the question is, where can I find these libraries?
More specifically the one that is needed for me in this request.
Okay, I can see that and I can see it requires Windows.h.
But, I'm confused on using the function.
Can someone give me an example program where if the left arrow key is pressed, then output a message to the screen.