symbols.html

来自「gcc手册」· HTML 代码 · 共 36 行

HTML
36
字号
<html lang="en">

<head>

<title>Untitled</title>

<meta http-equiv="Content-Type" content="text/html">

<meta name="description" content="Untitled">

<meta name="generator" content="makeinfo 4.3">

<link href="http://www.gnu.org/software/texinfo/" rel="generator-home">

</head>

<body>

<div class="node">

<p>

Node:<a name="Symbols">Symbols</a>,

Next:<a rel="next" accesskey="n" href="Location-Counter.html#Location%20Counter">Location Counter</a>,

Previous:<a rel="previous" accesskey="p" href="Constants.html#Constants">Constants</a>,

Up:<a rel="up" accesskey="u" href="Expressions.html#Expressions">Expressions</a>

<hr><br>

</div>



<h4 class="subsection">Symbol Names</h4>



   <p>Unless quoted, symbol names start with a letter, underscore, or period

and may include letters, digits, underscores, periods, and hyphens. 

Unquoted symbol names must not conflict with any keywords.  You can

specify a symbol which contains odd characters or has the same name as a

keyword by surrounding the symbol name in double quotes:

<pre class="smallexample">       "SECTION" = 9;

       "with a space" = "also with a space" + 10;

     </pre>



   <p>Since symbols can contain many non-alphabetic characters, it is safest

to delimit symbols with spaces.  For example, <code>A-B</code> is one symbol,

whereas <code>A - B</code> is an expression involving subtraction.



   </body></html>



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?