字符常量 0 '0' '\0'


    // 字符变量占1个字节  字符常量占4个字节(wchar_t)
    
    char a = 'A';
    
    printf("%zd\n%zd\n",sizeof(a),sizeof('A'));  // 1  4
    
    putchar('\n');
    // 0 '\0'    '0'
    
    printf("%d\n%d\n%d",0,'\0','0');     //  0  0 48
    
    
    putchar('\n');
    
    
    printf("%c\n%c\n%c",0,'\0','0'); // 空 空 0


你可能感兴趣的:(字符常量 0 '0' '\0')