Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.75 KB

elements-of-c.md

File metadata and controls

44 lines (32 loc) · 1.75 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
Elements of C | Microsoft Docs
11/04/2016
cpp-language
article
C++
lexical conventions
conventions, lexical
20668a49-cab7-4153-a6d9-7439aac3ff3b
8
mikeblome
mblome
ghogen

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++ Integer Limits, and Escape Sequences.

Operators are symbols (both single characters and character combinations) 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