c语言函数总结.h c语言函数的总结

谁知道c语言里面那些函数的用法和一些函数代表的意思去下个
C语言函数速查
比如
abs
原型:extern
int
abs(int
x);
用法:#include
math.h
功能:求整数x的绝对值
说明:计算|x|,
当x不为负时返回x , 否则返回-x
举例:
//
abs.c
#include
syslib.h
#include
math.h
main()
{
int
x;
clrscr();
//
clear
screen
x=-5;
printf("|%d|=%d\n",x,abs(x));
x=0;
printf("|%d|=%d\n",x,abs(x));
x=+5;
printf("|%d|=%d\n",x,abs(x));
getchar();
return
0;
}
相关函数:fabs
有谁能帮我将C语言中所有的函数及其功能一一列举一下,不胜感激复制
#include
"stdio.h"
{char
s1[]="abcde",s2[]="scasasa";
strcpy(s1,s2);
如果s2长度大于s1则会覆盖掉
如果小于的话只是将s2的\0放在s1中\0的前面罢了,而后面处理字符串的函数是遇到\0就收手
函数名:
strncpy

能:
串拷贝

法:
char
*strncpy(char
*destin,
char
*source,
int
maxlen);
程序例:
#include
#include
int
main(void)
{
char
string[10];
char
*str1
=
"abcdefghi";
strncpy(string,
str1,
3);
string[3]
=
'\0';
printf("%s\n",
string);
return
0;
}
函数名:
remove

能:
删除一个文件

法:
int
remove(char
*filename);
程序例:
#include
int
main(void)
{
char
file[80];
/*
prompt
for
file
name
to
delete
*/
printf("file
to
delete:
");
gets(file);
/*
delete
the
file
*/
if
(remove(file)
==
0)
printf("removed
%s.\n",file);
else
perror("remove");
return
0;
}
函数名:
rename

能:
重命名文件

法:
int
rename(char
*oldname,
char
*newname);
程序例:
#include
int
main(void)
{
char
oldname[80],
newname[80];
/*
prompt
for
file
to
rename
and
new
name
*/
printf("file
to
rename:
");
gets(oldname);
printf("new
name:
");
gets(newname);
/*
rename
the
file
*/
if
(rename(oldname,
newname)
==
0)
printf("renamed
%s
to
%s.\n",
oldname,
newname);
else
perror("rename");
return
0;
}
c语言中,头文件stdlib.h主要包含什么函数?stdlib.h里面定义了五种类型、一些宏和通用工具函数 。类型例如size_t、wchar_t、div_t、ldiv_t和lldiv_t; 宏例如EXIT_FAILURE、EXIT_SUCCESS、RAND_MAX和MB_CUR_MAX等等;
常用的函数如malloc()、calloc()、realloc()、free()、system()、atoi()、atol()、rand()、srand()、exit()等等 。具体的内容可以打开编译器的include目录里面的stdlib.h头文件查看 。
C语言为了方便用户编写程序,为用户开发了大量的库函数,其定义在.h文件中,用户可以调用这些函数实现强大的功能 。所以对于用户来说,掌握这些函数的用法是提高编程水平的关键 。
扩展资料:
以下内容适合放在头文件里
1、对于具有外部存储类型的标识符,可以在其他任何一个源程序文件中经声明后引用,因此用户完全可以将一些具有外部存储类型的标识符的声明放在一个头文件中 。

推荐阅读