Showing posts with label identifiers. Show all posts
Showing posts with label identifiers. Show all posts

Saturday, 5 October 2013

Identifiers in C++

In this post of shapes in C, we are going to discuss sixth C tutorial for beginners in which we are going to discuss about identifiers in C++. Identifiers are the names of things that appear in programs such as variables, constants and functions. There are some rules for identifiers in C++ that should be followed otherwise; the compiler would give the syntax error. C++ identifiers: A C++ identifier consists of letters, digits and the underscore character (_). Rules: The identifier should begin with a letter...