Quotation marks in C language--single and double quotation marks

Source: Internet
Author: User
The characters in single quotes represent an integer value, such as ' A ' is a character constant, and its value is 65 in the ASCII character set;
Double quotes are string constants, such as "A" in storage: a\0, which means the end of the string with the character ' \ s '

For the escape of quotation marks and output, use the following program description:
#include <stdio.h>main () {    int c;    while ((C=getchar ())! = EOF) {        if (c== ' \ ')                             */* escape character can be removed, this sentence can also be written as if (c== ' ")  */            printf (" The char is: \ "\ n");        /* Escape character before the double quotation mark \ Cannot remove *        /if (c== ' \ ')/                             */* Single quote before the escape character \ cannot be removed *            /printf ("The char is: \ \ \ n");        /* Escape character can be removed, this sentence can also be written as printf ("The char is: ' \ n"); */    }}



Simply put, if the symbols are the same, they will be escaped, and if they are different, they will not be escaped. But in order to format uniform, the quotation marks can be escaped.


Reference K&r

Quotation marks in C language--single and double quotation marks

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.