Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 1.51 KB

elements-of-c.md

File metadata and controls

36 lines (22 loc) · 1.51 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Elements of C
Elements of C
11/04/2016
lexical conventions
conventions, lexical
20668a49-cab7-4153-a6d9-7439aac3ff3b

Elements of C

This section describes the elements of the C programming language, including the names, numbers, and characters used to construct a C program. The ANSI C syntax labels these components tokens.

This section explains how to define tokens and how the compiler evaluates them.

The following topics are discussed:

The section also includes reference tables for Trigraphs, Limits on Floating-Point Constants, C and C++ Integer Limits, and Escape Sequences.

Operators (as both single characters and character combinations) are symbols that specify how values are to be manipulated. Each symbol is interpreted as a single unit, called a token. For more information, see Operators.

See also

C Language Reference