- 论坛徽章:
- 0
|
本帖最后由 dacaisha 于 2010-12-23 15:08 编辑
我在linux下写了一下代码,有几点不明白,还望各位高手指点:
fp指向的源文件为:
0 0 9 0 0 0 0
0 0 0 0 9 4 6
0 2 3 4 5 6 7
3 4 5 6 9 0 8
3 4 5 6 2 0 2
#include<stdio.h>
#include<stdlib.h>
int main(int argc,char *argv[])
{
short int num[5][7];
FILE *fp,*fa;
int byte=0;
short int (*p)[7];
p=num;
if((fa=fopen(argv[2],"wb"))==NULL)
{
printf("Can not open file %s\n",argv[2]);
exit(1);
}
if((fp=fopen(argv[1],"rb"))==NULL)
{
printf("Can not open file %s\n",argv[1]);
exit(1);
}
printf("%p %p\n",*p,num);
while(byte=fread(p,sizeof(short int,7,fp))
{
fwrite(p,sizeof(short int),byte,fa); // 当我把程序中的short int都改成int时为什么每运行一步fwrite,都会写入两行呢,比如第一次运行时,目标文件中内容是
0 0 9 0 0 0 0
0 0 0 0 9 4 6 改成short int程序又正常呢?
printf("%d\n",**p); // 这时候对p进行**p运算,为什么打印出来是一大串数字呢?而不是源文件二维数组中的某个元素呢?
}
C语言新手,还望高手指点。。谢谢~! |
|