Definitions for "String Literal" Add To Word List
Login or Register  | Word Lists | Search History

A string enclosed within single quotes.
Helpful?           0
Or literal string, string constant. A string of characters enclosed with double quotation marks ("). Any character from the source character set is allowed, except that a double quotation mark inside the string must be preceded by the backslash, or escape, character (\). Like other constants, string literals do not change in a program. See also character constant.
Helpful?           0
a double-quote delimited sequence of zero or more printable characters, whitespace, and escape characters
Helpful?           0
an array of characters that receives an initial value of the characters that are included in the string
Helpful?           0
a sequence of characters (as defined in lex
Helpful?           0
a sequence of characters between quotation marks, such as "string" or "literal"
Helpful?           0
a sequence of characters between two double-quote characters, or an identifier following a single-quote character
Helpful?           0
a sequence of characters delimited by double quote ( " ) characters
Helpful?           0
a sequence of character surrounded by double quotes "
Helpful?           0
a sequence of Unicode characters enclosed within double quote characters, e
Helpful?           0
a sequence of zero or more characters enclosed by single quotes
Helpful?           0
a series of characters enclosed in string delimiters
Helpful?           0
a word or phrase that is typed inside of double quotes
Helpful?           0
A string of characters and escape sequences delimited by single quotation marks (' ') or double quotation marks (" ").
Helpful?           0
A contiguous sequence of zero or more characters enclosed in double quotation marks that is itself data, rather than a reference to data.
Helpful?           0
n. A sequence of characters between double quotes in source code. Used to initialize an array of char, or to request an anonymous array containing a constant string (which will generally be accessed by the pointer which the anonymous array decays to). See question 1.32.
Helpful?           0