金鑫水淼的嵌入式开发学习博客
gofiend
全部博文(150)
2011年(1)
2009年(14)
2008年(135)
llinux
Bsolar
帅得不敢
yeyincan
零和博弈
liying10
wangzhen
giszy
云龙湖1
分类: LINUX
2008-08-07 12:41:02
#include <stdio.h> #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> // for tesing the fopen.c programe .it is cann't write integer array; int main() { FILE *pFile; int i; int buffer_integer[5]; pFile = fopen( "a.txt", "r" ); if( pFile ==NULL) { perror( "error file open" ); } else { fread( buffer_integer, 4, 5, pFile ); } fclose( pFile ); for( i=0; i<5; i++) { printf( "%d \n", buffer_integer[i] ); } system( "ls -l " ); return 0; }
上一篇:8.6 NVM部分代码的阅读-void tc_RF_operation( )在TC_Main.c中
下一篇:8-10]fflush 函数并不能重新定位流位置,只是刷新缓冲区
登录 注册