Write Standard Code in C++

There are infinitely many ways to program computers. Ultimately, it is the choice of the programmer how to accomplish what they need. There are, however, many "best practices" for styles and function usage for better compilation and safer programs. Some care should be taken to ensure that future programmers (including yourself) on your project can read and understand your code.

Steps

  1. Download a C++ IDE (integrated development environment) such as Eclipse, Netbeans, and CodeBlocks, or you can use a plain text editor such as Notepad++ or VIM. You can also run programs from the command line, in that case any text-editor will suffice. It might be handy to choose an editor which supports syntax highlighting and line-numbers. Most programmers find that unix-like systems (linux, OS X, BSD) are the best environments for development.
  2. Create a main program file. The main file must include a function called main(). This is where execution of the program begins. From here, you should be calling functions, instantiating classes, etc. Other files of your application as well as libraries can be included into this file.
  3. Begin writing your program. Insert your code or the program that you need to build (see below for a few examples). Learn the syntax, semantics, Object-Oriented Programming paradigms, data striations, algorithm designs such as linked lists, priority queues, etc. C++ is not an easy language to program in, but doing so teaches you the fundamentals that extend to all programming languages.
  4. Insert comments in your code. Explain what your functions do and what variables are for. Choose clear names for variables and functions. Capitalize the names of global variables. In general: make sure that anyone reading your code can understand it.
  5. Use proper indenting in your code. Again, see the examples below.
  6. Compile your code with
    g++ main.cpp
  7. Run your program by typing:
    ./a.out

Examples

Example.1

Example.2

Example.3

Example.4:

Examples of different styles

Tips

  • Always try to use an ISO compiler with your programs.
  • 'a.out' is the name of the default executable file made by the compiler.

Warnings

  • Never use obfuscated styles or deprecated functions.

Related Articles