函数声明:
1、隐式声明:在没有声明的情况下,系统可根据参数类型判断去调用函数(有可能出错)
2、显式声明:声明在被调用之前,如:double add(double,double); 函数声明参数可只写类型,不需要写函数体。
文件操作:
fopen --打开文件,FILE *pFile=fopen("a.txt","w");
fopen的打...
分类:
其他好文 时间:
2014-08-01 19:51:23
阅读次数:
200
转载: http://blog.csdn.net/xiaoyangger/article/details/5237016fileno()函数功能:把文件流指针转换成文件描述符相关函数:open, fopen表头文件:#include 定义函数:int fileno(FILE *stream)函数说明...
分类:
其他好文 时间:
2014-08-01 13:26:31
阅读次数:
194
程序打印自身代码的两种方法
方法一:利用fopen,打开可执行程序对应的source code file
/*****************************************
code writer : EOF
code file : print_my_self.c
code date : 2014.08.01
e-mail: jasonleaster@gm...
分类:
其他好文 时间:
2014-08-01 02:25:40
阅读次数:
264
#include<stdio.h>
#include<stdlib.h>
intmain(void)
{
structtestF{
inta;
intb;
floatc;
};
structtestFstruct1[5]={{5,4,5.4},{4,3,4.3},{3,2,3.2},{2,1,2.1},{1,0,1.01}};
FILE*fpW;
if((fpW=fopen("./testFile","wb"))==NULL){
printf("Openfilefaied,yoou..
分类:
编程语言 时间:
2014-07-31 21:20:08
阅读次数:
393
上一篇博客我们讲解了如何使用Linux提供的文件操作函数,本文主要讲解使用C语言提供的文件操作的库函数。函数介绍 fopen(打开文件) 相关函数 open,fclose 表头文件 #include 定义函数 FILE * fopen(const char * path,const char *...
分类:
编程语言 时间:
2014-07-30 01:06:43
阅读次数:
260
注意:CreateFile 跟 fopen 不同,打开文件时不区分 文本方式 或 二进制 方式ReadFile 或 WriteFile 都是对二进制数据进行操作HANDLE WINAPI CreateFile( __in LPCTSTR lpFileName, ...
分类:
其他好文 时间:
2014-07-29 21:26:12
阅读次数:
236
1 #include 2 3 int main() 4 { 5 FILE * fd = fopen("btoo1.c", "ab+"); 6 fpos_t p ; 7 int fp = fgetpos(fd, &p); 8 printf("bef seek: f...
分类:
移动开发 时间:
2014-07-28 19:06:24
阅读次数:
229
打开文件:fopen:fopen(filename,mode);//fopen("test.txt","r”);
打开模式:r 只读方式打开,将文件指针指向文件头
r+ 读写方式打开,将文件指针指向文件头
w 写入方式,指向文件头,如果不存在则尝试创建
w+ 读写方式,指向文件头,如果不存...
分类:
Web程序 时间:
2014-07-25 11:10:21
阅读次数:
333
不同的错误处理方法:
简单的die()语句自定义错误函数和错误触发器错误报告
基本的错误处理:使用die()函数
if(!file_exists("welcome.txt")){
die("FIle not found");
}else{
$file=fopen("welcome.txt","r");
}
或者
$file=fopen("web...
分类:
Web程序 时间:
2014-07-25 11:10:01
阅读次数:
243
//捕获fopen调用中的错误#include#include#include#defineMYFILE"missing.txt"intmain() { FILE*fin; fin=fopen(MYFILE,"r"); if(fin==(FILE*)NULL) { printf("%s:%s\n",...
分类:
系统相关 时间:
2014-07-24 16:56:45
阅读次数:
298