码迷,mamicode.com
首页 > 其他好文 > 详细

你知道输出结果么?

时间:2014-11-11 16:43:10      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   2014   log   as   c   file   har   

#include <stdio.h>

void main(void)
{
        int i = 0;
        char str[10] = {1,2,3,4,5,6,7,8,9,10};
        short *ptr = NULL;
        ptr = (short *)str;

        while(i < 10)
        {
                printf("%x\r\n",*(ptr+i));
                i++;
        }

        return ;
}


不上机运行,输出结果:

你知道输出结果么?

标签:blog   io   ar   2014   log   as   c   file   har   

原文地址:http://blog.csdn.net/u012377333/article/details/41011365

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!