
About C++. I still remember all the basic stuff: loops, ifs, functions, and inheritance. Anyone If a total noob is reading this post for advice, the best advice that a total noob can get is that computer languages are just languages. You use the language to speak to the computer to get the computer to do what you want. You can translate computer language into plain English. Programming in plain English would take much longer. Languages like C++ are much more concise. There are, however, computer languages that are almost plain English. I think BASIC would be an example of a computer language that is almost just English.
Another very important topic to understand is API (Application Programming Interface). API is code derived from a library of code. You can't use C++ alone to make programs that involve graphics. Well, you can, but you'd have to start from scratch, but thanks to programming libraries you don't have to. Allegro is a programming library. A bunch of more knowledgeable programmers than I am made this library, pretty much from scratch. A programmer can download Allegro and use its public functions and other public stuff within the library. (google: declaring public or private functions in C++) Whatever you use from the library is called the API.
No comments:
Post a Comment