标签:style blog http color io 2014 div log
字符型常量视为int类型
1 #include <stdio.h> 2 3 int main(void) 4 { 5 int a = ‘ABCD‘; 6 int b = ‘XYABCD‘; 7 printf("%d %c\n", a, a); 8 printf("%d %c\n", b, b); 9 10 return 0; 11 }
标签:style blog http color io 2014 div log
原文地址:http://www.cnblogs.com/itpoorman/p/3917179.html