Programmiersprache C/C++

Escape-Codes

Escape-Codes für Zeichen
  \a      BEL       alert                   i.a. akustisches Signal (bell)
  \b      BS        backspace
  \f      FF        form feed
  \n      NL (LF)   newline
  \r      CR        carriage return
  \t      HT        horizontal tab          (horizontaler) Tabulator
  \v      VT        vertical tab            vertikaler Tabulator

  \\      \         backslash
  \'      '         single quote
  \"      "         double quote
  \?      ?         question mark           Fragezeichen         ( ANSI-C )
Numerische Escape-Codes
  \ooo     ooo      Oktalzahl
                    z.B. \41   fuer !
  \xhhh    hhh      Hexidezimalzahl        ( ANSI-C )
                    z.B. \x41  fuer A

Zurück zum Menü
Zurück zur vorigen Seite Weiter zur nächsten Seite

P. Böhme, 18.12.1995