JustPaste.it

Naming Convention in C++ - TAE

Cplusplus code. Use CamelCase for all names. Start types (as classes, structs, and typedefs) with a capital letter, and other names (functions, variables) with a lowercase.

Naming Convention in C++

A programmer's first and most fundamental step to produce clean code is to name a file or variable. This naming must be acceptable so that it is an easy way for any other programmer to read the code. Naming conventions in C++ are guidelines for selecting a proper name for a variable or function in a C++ program. Read more...

 

namingconventioninc.png