摘要: 1 #include 2 #include 3 4 int main() 5 { 6 char s1[] = {'H', 'e', '1', '2', 'o'}; 7 char *p=(char *)(s1+3); 8 printf("*p:%c\n",p[0]); 9 char *p2=(... 阅读全文
posted @ 2015-01-15 10:32 ltlly 阅读(1177) 评论(0) 推荐(0) 编辑