C
文章平均质量分 72
csghydiaoke
这个作者很懒,什么都没留下…
展开
-
main()函数的参数 int main(int argc, char* argv[])
C编译器允许main()函数没有参数,或者有两个参数(有些实现允许更多的参数,但这只是对标准的扩展)。这两个参数,一个是int类型,一个是字符串类型。第一个参数是命令行中的字符串数。按照惯例(但不是必须的),这个int参数被称为argc(argument count)。大家或许现在才明白这个形参为什么要取这么个奇怪的名字吧,呵呵!至于英文的意思,自己查字典吧。第二个参数是一个指向字符串的指针数原创 2012-12-23 12:34:19 · 593 阅读 · 0 评论 -
Linux系统调用 file-cp.c
/*Using system call implementation file copy function: Manual input source file target file pathname pathname If the destination does not exist, create and write*/#include #include #include #原创 2012-12-25 11:30:03 · 752 阅读 · 0 评论 -
TM结构体详解
struct tm { int tm_sec; /* 秒–取值区间为[0,59] */ int tm_min; /* 分 - 取值区间为[0,59] */ int tm_hour; /* 时 - 取值区间为[0,23] */ int tm_mday; /* 一个月中的日期 - 取值区间为[1,31] */ int tm_mon; /原创 2012-12-25 20:24:17 · 37758 阅读 · 1 评论 -
子进程复制了父进程的什么
原文来自:博客园(华夏35度)http://www.cnblogs.com/zhangchaoyang 作者:Orisun有时会出现父子进程变量的地址一样,但值不一样。看下面代码:#include#include#include#includemain(){ char str[4]="asd"; pid_t pid=fork(); if(pid==0){转载 2012-12-27 20:22:48 · 528 阅读 · 0 评论 -
#include <sys/types.h>的作用
#include 基本系统数据类型是Unix/Linux系统的基本系统数据类型的头文件,含有size_t,time_t,pid_t等类型。NAME sys/types.h - data typesSYNOPSIS #include DESCRIPTION The header shall include de原创 2012-12-29 10:28:04 · 15660 阅读 · 0 评论 -
#include <sys/stat.h>文件状态
#include 文件状态,是unix/linux系统定义文件状态所在的伪标准头文件。含有类型与函数: dev_t st_dev Device ID of device containing file. ino_t st_ino File serial number.原创 2012-12-29 10:29:37 · 1634 阅读 · 0 评论 -
float数据在for循环中的判断
#include#includeint main(void){ double x,h=0.1; for(x=0;x<1.5;x=x+h) printf("%.2lf ",x); printf("\n"); for(x=0;x<=1.5;x=x+h) printf("%.2lf ",x); printf("\n");原创 2012-12-17 18:48:12 · 1579 阅读 · 0 评论