C Symbols Flashcards
C Trigraph sequence: ??>
Converts to }
C Trigraph sequence: ??-
Converts to ~
C Trigraph sequence: ??(
Converts to [
C Trigraph sequence: ??’
Converts to ^
C Trigraph sequence: ??)
Converts to ]
C Trigraph sequence: ??
Converts to {
C Trigraph sequence: ??!
Converts to |
C Trigraph sequence: ??=
Converts to #
C Trigraph sequence:»_space;/
Converts to \
C What is a trigraph sequence
A three character sequence that is used for representing some symbols
C Conversion specifier: %o
Displays an Integer value in octal notation without the leading 0
C Conversion specifier: %#o
Displays an Integer value in octal notation with the leading o
C Conversion specifier: %x
Displays a value in hexadecimal notation without the leading 0x
C Conversion specifier: %#x
Displays a value in hexadecimal notation with the leading 0x
C Conversion specifier: %s
Displays a string
C Conversion specifier: %p
Displays the address of which the pointer refers to in hexadecimal format
C Conversion specifier: %zd
Displays a size_t value
What can C format strings contain
Ordinary characters, conversion specifiers, escape sequences