Chapter 1

char numChar = ‘4’; //Assigns digit character 4 to the char variable numChar. A string literal must be enclosed in quotation marks, so “A” is a string. A character literal is a single character enclosed in single quotes, so ‘A’ is a character. Information about Unicode and ASCII Code is on page 42. ................
................