摘要: int main(void){ char *f = "dffddfdf"; int *s; char *t; printf("f is %s \n", f); s = (int *)f; printf("s is %d \n", *s); t = (char *)s; ... 阅读全文
posted @ 2015-08-22 14:00 china8036 阅读(133) 评论(0) 推荐(0) 编辑