Hello, I've started to do C++, I know some (the basics, pointers variables etc) and I would like to know, what code actually makes a basic program (not the console) I have been doing some tutorials (Also got some books) and I would like to see what the code looks like to create a basic program.
If anyone can, could you please make a basic blank program (like a white background or something) and then text saying hello world.. etc
I know a few programming languages, so if I saw the code I would most probably know most of it.
what code actually makes a basic program (not the console)
If you want code to create a non-console application, you will not have a basic program, as you cannot create a non-console application with (just) standard C++.
I know a few programming languages, so if I saw the code I would most probably know most of it.
Then you shouldn't have any trouble mastering the google.
My understanding is that you need other libraries like allegro to do things like display images and such (graphics). But you have to know enough about how the language works to be able to use those libraries, which are (assuming I'm not wrong) basically just huge collections of thousands of pre-programmed functions.