English
Language : 

CC78K0S Datasheet, PDF (52/520 Pages) NEC – C Compiler Ver.1.30 or Later Language
CHAPTER 2 CONSTRUCTS OF C LANGUAGE
2.7 Delimiters
A delimiter is a symbol that has an independent syntax or meaning. However, it never generates a value.
The following delimiters are available for use in C.
[] () {} * , : = ; ... #
An expression declaration or statement may be described in brackets “[ ]”, parentheses “( )”, or braces “{ }”.
These delimiters must always be used in pairs as shown above. The delimiter # is used only for preprocessing
directives.
2.8 Header Name
The header name indicates the name of an external source file. This name is used only in the preprocessing
directive “#include”.
An example of an #include instruction of a header name is shown below. For the details of each #include
instruction, refer to 9.2 Source File Inclusion Directive.
#include <header name>
#include “header name”
2.9 Comment
A comment refers to a statement to be included in a C source module for information only. It begins with “/*” and
ends with “*/”. The part after “//” to the line feed can be identified as a comment statement by the -ZP option.
Example
/* comment statement */
//comment statement
52
User’s Manual U14872EJ1V0UM