chars

C compiler C++ compiler
Read syntax diagramSkip visual syntax diagramchars syntax
 
                        .-unsigned-.
>>-#--pragma--chars--(--+-signed---+--)------------------------><
 

Description

Specifies that the compiler is to treat all char objects as signed or unsigned. This pragma must appear before any C code or directive (except for the #line directive) in a source file.

Parameters

unsigned
All char objects are treated as unsigned integers.
signed
All char objects are treated as signed integers.


[ Top of Page | Previous Page | Next Page | Contents | Index ]