《C语言库函数合集》 很全哦 相信大家会喜欢的

时间:2011-12-03 17:37:31
【文件属性】:

文件名称:《C语言库函数合集》 很全哦 相信大家会喜欢的

文件大小:28KB

文件格式:RAR

更新时间:2011-12-03 17:37:31

《C语言库函数合集》

函数名: open 功 能: 打开一个文件用于读或写 用 法: int open(char *pathname, int access[, int permiss]); 程序例: #include #include #include #include int main(void) { int handle; char msg[] = "Hello world"; if ((handle = open("TEST.$$$", O_CREAT | O_TEXT)) == -1) { perror("Error:"); return 1; } write(handle, msg, strlen(msg)); close(handle); return 0; }


【文件预览】:
《C语言库函数合集》
----C语言库函数(U类字母).txt(4KB)
----C语言库函数(S类字母) - 2.txt(22KB)
----C语言库函数(Q类字母).txt(589B)
----C语言库函数(R类字母).txt(12KB)
----C语言库函数(S类字母) - 1.txt(24KB)
----C语言库函数(W类字母).txt(2KB)
----C语言库函数(T类字母).txt(7KB)
----C语言库函数(P类字母).txt(15KB)
----C语言库函数(V类字母).txt(4KB)
----C语言库函数(O类字母).txt(3KB)
----C语言库函数(S类字母) - 3.txt(20KB)

网友评论