導航:首頁 > 版本升級 > ultoa頭文件

ultoa頭文件

發布時間:2023-08-09 01:26:12

A. c語言 ultoa 這個函數為什麼不能調用 說沒有定義 已經包含了stdlib.h 頭文件

這個不是標准函數,如果是C++可以用 operator << 和 operator >> 轉,如果是C語言的話,試試scanf 和 printf

B. C++中itoa怎麼用

itoa是把整形數轉換成字元型,也有atoi的,這是把字元型轉換成整型,不過要注意幾個問題 TCHAR str[100]; //假設str為「1000」 int num = atoi(str); TCHAR str1[100]; //假設str1為「2」
int d = atoi(str); itoa(d_num, r_num, d); //這個itoa可以用來進制轉換,很方便!!!把d_num轉換在d進制的r_num

C. c語言中,函數itoa有什麼功能,怎麼用

itoa是廣泛應用的非標准C語言擴展函數。由於它不是標准C語言函數,所以不能在所有的編譯器中使
用。但是,大多數的編譯器(如Windows上的)通常在<stdlib.h>頭文件中包含這個函數。在<stdlib.h>中與之有相反功能的函數是atoi。功能:把一整數轉換為字元串。
用法
char
*itoa(int
value,
char
*string,
int
radix);
頭文件:
<stdlib.h>
程序例:
#include
<stdlib.h>
#include
<stdio.h>
int
main()
{
int
number
=
123456;
char
string[25];
itoa(number,
string,
10);
printf("integer
=
%d
string
=
%s\n",
number,
string);
return
0;
}
/*
實現itoa函數的源代碼
*/
char
*myitoa(int
num,char
*str,int
radix)
{
/*
索引表
*/
char
index[]="";
unsigned
unum;
/*
中間變數
*
int
i=0,j,k;
/*
確定unum的值
*/
if(radix==10&&num<0)
/*
十進制負數
*/
{
unum=(unsigned)-num;
str[i++]='-';
}
else
unum=(unsigned)num;
/*
其他情況
*/
/*
逆序
*/
do
{
str[i++]=index[unum%(unsigned)radix];
unum/=radix;
}while(unum);
str[i]='\0';
/*
轉換
*/
if(str[0]=='-')
k=1;
/*
十進制負數
*/
else
k=0;
/*
將原來的「/2」改為「/2.0」,保證當num在16~255之間,radix等於16時,也能得到正確結果
*/
for(j=k;j<=(i-1)/2.0+k;j++)
{
num=str[j];
str[j]=str[i-j-1+k];
str[i-j-1+k]=num;
}
return
str;
}
itoa的第三個參數用於將數字轉換成不同的進制。舉個例子:
#include
<stdlib.h>
#include
<stdio.h>
int
main(void)
{
int
number
=
12345;
char
string[25];
itoa(number,
string,
10);
//按十進制轉換
printf("integer
=
%d
string
=
%s\n",
number,
string);
itoa(number,
string,
16);
//按16進制轉換
printf("integer
=
%d
string
=
%s\n",
number,
string);
return
0;
}
輸出結果:
integer
=
12345
string
=
12345
--說明12345的十進製表示就是12345
integer
=
12345
string
=
3039
——說明12345的十六進製表示是0x3039
但是要注意,itoa並不是一個標準的C函數,它是Windows特有的,如果要寫跨平台的程序,請用sprintf。
用幾進製表示吧:)
MSDN的例子
Example
/*
ITOA.C:
This
program
converts
integers
of
various
*
sizes
to
strings
in
various
radixes.
*/
#include
<stdlib.h>
#include
<stdio.h>
void
main(
void
)
{
char
buffer[20];
int
i
=
3445;
long
l
=
-344115L;
unsigned
long
ul
=
1234567890UL;
_itoa(
i,
buffer,
10
);
printf(
"String
of
integer
%d
(radix
10):
%s\n",
i,
buffer
);
_itoa(
i,
buffer,
16
);
printf(
"String
of
integer
%d
(radix
16):
0x%s\n",
i,
buffer
);
_itoa(
i,
buffer,
2
);
printf(
"String
of
integer
%d
(radix
2):
%s\n",
i,
buffer
);
_ltoa(
l,
buffer,
16
);
printf(
"String
of
long
int
%ld
(radix
16):
0x%s\n",
l,
buffer
);
_ultoa(
ul,
buffer,
16
);
printf(
"String
of
unsigned
long
%lu
(radix
16):
0x%s\n",
ul,
buffer
);
}
Output
String
of
integer
3445
(radix
10):
3445
String
of
integer
3445
(radix
16):
0xd75
String
of
integer
3445
(radix
2):
110101110101
String
of
long
int
-344115
(radix
16):
0xfffabfcd
String
of
unsigned
long
1234567890
(radix
16):
0x499602d2
指定要轉換的進制的基數,其值好象在1--36之間都可以
這個不是C標准庫中的函數,而是Windows平台下擴展的,標准庫中有sprintf,功能比這個更強,用法跟printf類似:
char
str[255];
sprintf(str,
"%x",
100);
//將100轉為16進製表示的字元串。

D. 我需要c語言每個頭文件里的所有函數介紹及用法!

既然你不要網址,自己搜索"C語言標准函數庫"好了~~

這里寫不下~~

我以前學C的時候買過一本庫函數的書,就是按你的格式編排的,16開的500多頁

E. C++ STL 包含哪些頭文件

;assert.h> //設定插入點
#include <ctype.h> //字元處理
#include <errno.h> //定義錯誤碼
#include <float.h> //浮點數處理
#include <fstream.h> //文件輸入/輸出
#include <iomanip.h> //參數化輸入/輸出
#include <iostream.h> //數據流輸入/輸出
#include <limits.h> //定義各種數據類型最值常量
#include <locale.h> //定義本地化函數
#include <math.h> //定義數學函數
#include <stdio.h> //定義輸入/輸出函數
#include <stdlib.h> //定義雜項函數及內存分配函數
#include <string.h> //字元串處理
#include <strstrea.h> //基於數組的輸入/輸出
#include <time.h> //定義關於時間的函數
#include <wchar.h> //寬字元處理及輸入/輸出
#include <wctype.h> //寬字元分類

//////////////////////////////////////////////////////////////////////////

標准 C++ (同上的不再注釋)

#include <algorithm> //STL 通用演算法
#include <bitset> //STL 位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex> //復數類
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque> //STL 雙端隊列容器
#include <exception> //異常處理類
#include <fstream>
#include <functional> //STL 定義運算函數(代替運算符)
#include <limits>
#include <list> //STL 線性列表容器
#include <map> //STL 映射容器
#include <iomanip>
#include <ios> //基本輸入/輸出支持
#include <iosfwd> //輸入/輸出系統使用的前置聲明
#include <iostream>
#include <istream> //基本輸入流
#include <ostream> //基本輸出流
#include <queue> //STL 隊列容器
#include <set> //STL 集合容器
#include <sstream> //基於字元串的流
#include <stack> //STL 堆棧容器
#include <stdexcept> //標准異常類
#include <streambuf> //底層輸入/輸出支持
#include <string> //字元串類
#include <utility> //STL 通用模板類
#include <vector> //STL 動態數組容器
#include <cwchar>
#include <cwctype>

using namespace std;

//////////////////////////////////////////////////////////////////////////

C99 增加

#include <complex.h> //復數處理
#include <fenv.h> //浮點環境
#include <inttypes.h> //整數格式轉換
#include <stdbool.h> //布爾環境
#include <stdint.h> //整型環境
#include <tgmath.h> //通用類型數學宏

C頭文件大全

分類函數,所在函數庫為ctype.h

int isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否則返回0

int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或數字('0'-'9')

返回非0值,否則返回0

int isascii(int ch) 若ch是字元(ASCII碼中的0-127)返回非0值,否則返回0

int iscntrl(int ch) 若ch是作廢字元(0x7F)或普通控制字元(0x00-0x1F)

返回非0值,否則返回0

int isdigit(int ch) 若ch是數字('0'-'9')返回非0值,否則返回0

int isgraph(int ch) 若ch是可列印字元(不含空格)(0x21-0x7E)返回非0值,否則返回0

int islower(int ch) 若ch是小寫字母('a'-'z')返回非0值,否則返回0

int isprint(int ch) 若ch是可列印字元(含空格)(0x20-0x7E)返回非0值,否則返回0

int ispunct(int ch) 若ch是標點字元(0x00-0x1F)返回非0值,否則返回0

int isspace(int ch) 若ch是空格(' '),水平製表符('\t'),回車符('\r'),

走紙換行('\f'),垂直製表符('\v'),換行符('\n')

返回非0值,否則返回0

int isupper(int ch) 若ch是大寫字母('A'-'Z')返回非0值,否則返回0

int isxdigit(int ch) 若ch是16進制數('0'-'9','A'-'F','a'-'f')返回非0值,

否則返回0

int tolower(int ch) 若ch是大寫字母('A'-'Z')返回相應的小寫字母('a'-'z')

int toupper(int ch) 若ch是小寫字母('a'-'z')返回相應的大寫字母('A'-'Z')

數學函數,所在函數庫為math.h、stdlib.h、string.h、float.h

int abs(int i) 返回整型參數i的絕對值

double cabs(struct complex znum) 返回復數znum的絕對值

double fabs(double x) 返回雙精度參數x的絕對值

long labs(long n) 返回長整型參數n的絕對值

double exp(double x) 返回指數函數ex的值

double frexp(double value,int *eptr) 返回value=x*2n中x的值,n存貯在eptr中

double ldexp(double value,int exp); 返回value*2exp的值

double log(double x) 返回logex的值

double log10(double x) 返回log10x的值

double pow(double x,double y) 返回xy的值

double pow10(int p) 返回10p的值

double sqrt(double x) 返回+√x的值

double acos(double x) 返回x的反餘弦cos-1(x)值,x為弧度

double asin(double x) 返回x的反正弦sin-1(x)值,x為弧度

double atan(double x) 返回x的反正切tan-1(x)值,x為弧度

double atan2(double y,double x) 返回y/x的反正切tan-1(x)值,y的x為弧度

double cos(double x) 返回x的餘弦cos(x)值,x為弧度

double sin(double x) 返回x的正弦sin(x)值,x為弧度

double tan(double x) 返回x的正切tan(x)值,x為弧度

double cosh(double x) 返回x的雙曲餘弦cosh(x)值,x為弧度

double sinh(double x) 返回x的雙曲正弦sinh(x)值,x為弧度

double tanh(double x) 返回x的雙曲正切tanh(x)值,x為弧度

double hypot(double x,double y) 返回直角三角形斜邊的長度(z),

x和y為直角邊的長度,z2=x2+y2

double ceil(double x) 返回不小於x的最小整數

double floor(double x) 返回不大於x的最大整數

void srand(unsigned seed) 初始化隨機數發生器

int rand() 產生一個隨機數並返回這個數

double poly(double x,int n,double c[])從參數產生一個多項式

double modf(double value,double *iptr)將雙精度數value分解成尾數和階

double fmod(double x,double y) 返回x/y的余數

double frexp(double value,int *eptr) 將雙精度數value分成尾數和階

double atof(char *nptr) 將字元串nptr轉換成浮點數並返回這個浮點數

double atoi(char *nptr) 將字元串nptr轉換成整數並返回這個整數

double atol(char *nptr) 將字元串nptr轉換成長整數並返回這個整數

char *ecvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *fcvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *gcvt(double value,int ndigit,char *buf)

將數value轉換成字元串並存於buf中,並返回buf的指針

char *ultoa(unsigned long value,char *string,int radix)

將無符號整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *ltoa(long value,char *string,int radix)

將長整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *itoa(int value,char *string,int radix)

將整數value轉換成字元串存入string,radix為轉換時所用基數

double atof(char *nptr) 將字元串nptr轉換成雙精度數,並返回這個數,錯誤返回0

int atoi(char *nptr) 將字元串nptr轉換成整型數, 並返回這個數,錯誤返回0

long atol(char *nptr) 將字元串nptr轉換成長整型數,並返回這個數,錯誤返回0

double strtod(char *str,char **endptr)將字元串str轉換成雙精度數,並返回這個數,

long strtol(char *str,char **endptr,int base)將字元串str轉換成長整型數,

並返回這個數,

int matherr(struct exception *e)

用戶修改數學錯誤返回信息函數(沒有必要使用)

double _matherr(_mexcep why,char *fun,double *arg1p,

double *arg2p,double retval)

用戶修改數學錯誤返回信息函數(沒有必要使用)

unsigned int _clear87() 清除浮點狀態字並返回原來的浮點狀態

void _fpreset() 重新初使化浮點數學程序包

unsigned int _status87() 返回浮點狀態字

目錄函數,所在函數庫為dir.h、dos.h

int chdir(char *path) 使指定的目錄path(如:"C:\\WPS")變成當前的工作目錄,成

功返回0

int findfirst(char *pathname,struct ffblk *ffblk,int attrib)查找指定的文件,成功

返回0

pathname為指定的目錄名和文件名,如"C:\\WPS\\TXT"

ffblk為指定的保存文件信息的一個結構,定義如下:

┏━━━━━━━━━━━━━━━━━━┓

┃struct ffblk ┃

┃{ ┃

┃ char ff_reserved[21]; /*DOS保留字*/┃

┃ char ff_attrib; /*文件屬性*/ ┃

┃ int ff_ftime; /*文件時間*/ ┃

┃ int ff_fdate; /*文件日期*/ ┃

┃ long ff_fsize; /*文件長度*/ ┃

┃ char ff_name[13]; /*文件名*/ ┃

┃} ┃

┗━━━━━━━━━━━━━━━━━━┛

attrib為文件屬性,由以下字元代表

┏━━━━━━━━━┳━━━━━━━━┓

┃FA_RDONLY 只讀文件┃FA_LABEL 卷標號┃

┃FA_HIDDEN 隱藏文件┃FA_DIREC 目錄 ┃

┃FA_SYSTEM 系統文件┃FA_ARCH 檔案 ┃

┗━━━━━━━━━┻━━━━━━━━┛

例:

struct ffblk ff;

findfirst("*.wps",&ff,FA_RDONLY);

int findnext(struct ffblk *ffblk) 取匹配finddirst的文件,成功返回0

void fumerge(char *path,char *drive,char *dir,char *name,char *ext)

此函數通過盤符drive(C:、A:等),路徑dir(\TC、\BC\LIB等),

文件名name(TC、WPS等),擴展名ext(.EXE、.COM等)組成一個文件名

存與path中.

int fnsplit(char *path,char *drive,char *dir,char *name,char *ext)

此函數將文件名path分解成盤符drive(C:、A:等),路徑dir(\TC、\BC\LIB等),

文件名name(TC、WPS等),擴展名ext(.EXE、.COM等),並分別存入相應的變數中.

int getcurdir(int drive,char *direc) 此函數返回指定驅動器的當前工作目錄名稱

drive 指定的驅動器(0=當前,1=A,2=B,3=C等)

direc 保存指定驅動器當前工作路徑的變數 成功返回0

char *getcwd(char *buf,iint n) 此函數取當前工作目錄並存入buf中,直到n個字

節長為為止.錯誤返回NULL

int getdisk() 取當前正在使用的驅動器,返回一個整數(0=A,1=B,2=C等)

int setdisk(int drive) 設置要使用的驅動器drive(0=A,1=B,2=C等),

返回可使用驅動器總數

int mkdir(char *pathname) 建立一個新的目錄pathname,成功返回0

int rmdir(char *pathname) 刪除一個目錄pathname,成功返回0

char *mktemp(char *template) 構造一個當前目錄上沒有的文件名並存於template中

char *searchpath(char *pathname) 利用MSDOS找出文件filename所在路徑,

,此函數使用DOS的PATH變數,未找到文件返回NULL

進程函數,所在函數庫為stdlib.h、process.h

void abort() 此函數通過調用具有出口代碼3的_exit寫一個終止信息於stderr,

並異常終止程序。無返回值

int exec…裝入和運行其它程序

int execl( char *pathname,char *arg0,char *arg1,…,char *argn,NULL)

int execle( char *pathname,char *arg0,char *arg1,…,

char *argn,NULL,char *envp[])

int execlp( char *pathname,char *arg0,char *arg1,…,NULL)

int execlpe(char *pathname,char *arg0,char *arg1,…,NULL,char *envp[])

int execv( char *pathname,char *argv[])

int execve( char *pathname,char *argv[],char *envp[])

int execvp( char *pathname,char *argv[])

int execvpe(char *pathname,char *argv[],char *envp[])

exec函數族裝入並運行程序pathname,並將參數

arg0(arg1,arg2,argv[],envp[])傳遞給子程序,出錯返回-1

在exec函數族中,後綴l、v、p、e添加到exec後,

所指定的函數將具有某種操作能力

有後綴 p時,函數可以利用DOS的PATH變數查找子程序文件。

l時,函數中被傳遞的參數個數固定。

v時,函數中被傳遞的參數個數不固定。

e時,函數傳遞指定參數envp,允許改變子進程的環境,

無後綴e時,子進程使用當前程序的環境。

void _exit(int status)終止當前程序,但不清理現場

void exit(int status) 終止當前程序,關閉所有文件,寫緩沖區的輸出(等待輸出),

並調用任何寄存器的"出口函數",無返回值

int spawn…運行子程序

int spawnl( int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL)

int spawnle( int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL,char *envp[])

int spawnlp( int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL)

int spawnlpe(int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL,char *envp[])

int spawnv( int mode,char *pathname,char *argv[])

int spawnve( int mode,char *pathname,char *argv[],char *envp[])

int spawnvp( int mode,char *pathname,char *argv[])

int spawnvpe(int mode,char *pathname,char *argv[],char *envp[])

spawn函數族在mode模式下運行子程序pathname,並將參數

arg0(arg1,arg2,argv[],envp[])傳遞給子程序.出錯返回-1

mode為運行模式

mode為 P_WAIT 表示在子程序運行完後返回本程序

P_NOWAIT 表示在子程序運行時同時運行本程序(不可用)

P_OVERLAY表示在本程序退出後運行子程序

在spawn函數族中,後綴l、v、p、e添加到spawn後,

所指定的函數將具有某種操作能力

有後綴 p時, 函數利用DOS的PATH查找子程序文件

l時, 函數傳遞的參數個數固定.

v時, 函數傳遞的參數個數不固定.

e時, 指定參數envp可以傳遞給子程序,允許改變子程序運行環境.

當無後綴e時,子程序使用本程序的環境.

int system(char *command) 將MSDOS命令command傳遞給DOS執行

轉換子程序,函數庫為math.h、stdlib.h、ctype.h、float.h

char *ecvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *fcvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *gcvt(double value,int ndigit,char *buf)

將數value轉換成字元串並存於buf中,並返回buf的指針

char *ultoa(unsigned long value,char *string,int radix)

將無符號整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *ltoa(long value,char *string,int radix)

將長整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *itoa(int value,char *string,int radix)

將整數value轉換成字元串存入string,radix為轉換時所用基數

double atof(char *nptr) 將字元串nptr轉換成雙精度數,並返回這個數,錯誤返回0

int atoi(char *nptr) 將字元串nptr轉換成整型數, 並返回這個數,錯誤返回0

long atol(char *nptr) 將字元串nptr轉換成長整型數,並返回這個數,錯誤返回0

double strtod(char *str,char **endptr)將字元串str轉換成雙精度數,並返回這個數,

long strtol(char *str,char **endptr,int base)將字元串str轉換成長整型數,

並返回這個數,

int toascii(int c) 返回c相應的ASCII

int tolower(int ch) 若ch是大寫字母('A'-'Z')返回相應的小寫字母('a'-'z')

int _tolower(int ch) 返回ch相應的小寫字母('a'-'z')

int toupper(int ch) 若ch是小寫字母('a'-'z')返回相應的大寫字母('A'-'Z')

int _toupper(int ch) 返回ch相應的大寫字母('A'-'Z')

診斷函數,所在函數庫為assert.h、math.h

void assert(int test) 一個擴展成if語句那樣的宏,如果test測試失敗,

就顯示一個信息並異常終止程序,無返回值

void perror(char *string) 本函數將顯示最近一次的錯誤信息,格式如下:

字元串string:錯誤信息

char *strerror(char *str) 本函數返回最近一次的錯誤信息,格式如下:

字元串str:錯誤信息

int matherr(struct exception *e)

用戶修改數學錯誤返回信息函數(沒有必要使用)

double _matherr(_mexcep why,char *fun,double *arg1p,

double *arg2p,double retval)

用戶修改數學錯誤返回信息函數(沒有必要使用)

輸入輸出子程序,函數庫為io.h、conio.h、stat.h、dos.h、stdio.h、signal.h

int kbhit() 本函數返回最近所敲的按鍵

int fgetchar() 從控制台(鍵盤)讀一個字元,顯示在屏幕

int getch() 從控制台(鍵盤)讀一個字元,不顯示在屏幕上

int putch() 向控制台(鍵盤)寫一個字元

int getchar() 從控制台(鍵盤)讀一個字元,顯示在屏幕上

int putchar() 向控制台(鍵盤)寫一個字元

int getche() 從控制台(鍵盤)讀一個字元,顯示在屏幕上

int ungetch(int c) 把字元c退回給控制台(鍵盤)

char *cgets(char *string) 從控制台(鍵盤)讀入字元串存於string中

int scanf(char *format[,argument…])從控制台讀入一個字元串,分別對各個參數進行

賦值,使用BIOS進行輸出

int vscanf(char *format,Valist param)從控制台讀入一個字元串,分別對各個參數進行

賦值,使用BIOS進行輸出,參數從Valist param中取得

int cscanf(char *format[,argument…])從控制台讀入一個字元串,分別對各個參數進行

賦值,直接對控制台作操作,比如顯示器在顯示時字元時即為直接寫頻方式顯示

int sscanf(char *string,char *format[,argument,…])通過字元串string,分別對各個

參數進行賦值

int vsscanf(char *string,char *format,Vlist param)通過字元串string,分別對各個

參數進行賦值,參數從Vlist param中取得

int puts(char *string) 發關一個字元串string給控制台(顯示器),

使用BIOS進行輸出

void cputs(char *string) 發送一個字元串string給控制台(顯示器),

直接對控制台作操作,比如顯示器即為直接寫頻方式顯示

int printf(char *format[,argument,…]) 發送格式化字元串輸出給控制台(顯示器)

使用BIOS進行輸出

int vprintf(char *format,Valist param) 發送格式化字元串輸出給控制台(顯示器)

使用BIOS進行輸出,參數從Valist param中取得

int cprintf(char *format[,argument,…]) 發送格式化字元串輸出給控制台(顯示器),

直接對控制台作操作,比如顯示器即為直接寫頻方式顯示

int vcprintf(char *format,Valist param)發送格式化字元串輸出給控制台(顯示器),

直接對控制台作操作,比如顯示器即為直接寫頻方式顯示,

參數從Valist param中取得

int sprintf(char *string,char *format[,argument,…])

將字元串string的內容重新寫為格式化後的字元串

int vsprintf(char *string,char *format,Valist param)

將字元串string的內容重新寫為格式化後的字元串,參數從Valist param中取得

int rename(char *oldname,char *newname)將文件oldname的名稱改為newname

int ioctl(int handle,int cmd[,int *argdx,int argcx])

還有很多 ,由於字數上限了,就發這么多吧!
另外,虛機團上產品團購,超級便宜

F. C++函數頭文件有哪些

C、傳統 C++

#include <assert.h> //設定插入點
#include <ctype.h> //字元處理
#include <errno.h> //定義錯誤碼
#include <float.h> //浮點數處理
#include <fstream.h> //文件輸入/輸出
#include <iomanip.h> //參數化輸入/輸出
#include <iostream.h> //數據流輸入/輸出
#include <limits.h> //定義各種數據類型最值常量
#include <locale.h> //定義本地化函數
#include <math.h> //定義數學函數
#include <stdio.h> //定義輸入/輸出函數
#include <stdlib.h> //定義雜項函數及內存分配函數
#include <string.h> //字元串處理
#include <strstrea.h> //基於數組的輸入/輸出
#include <time.h> //定義關於時間的函數
#include <wchar.h> //寬字元處理及輸入/輸出
#include <wctype.h> //寬字元分類

//////////////////////////////////////////////////////////////////////////

標准 C++ (同上的不再注釋)

#include <algorithm> //STL 通用演算法
#include <bitset> //STL 位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex> //復數類
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque> //STL 雙端隊列容器
#include <exception> //異常處理類
#include <fstream>
#include <functional> //STL 定義運算函數(代替運算符)
#include <limits>
#include <list> //STL 線性列表容器
#include <map> //STL 映射容器
#include <iomanip>
#include <ios> //基本輸入/輸出支持
#include <iosfwd> //輸入/輸出系統使用的前置聲明
#include <iostream>
#include <istream> //基本輸入流
#include <ostream> //基本輸出流
#include <queue> //STL 隊列容器
#include <set> //STL 集合容器
#include <sstream> //基於字元串的流
#include <stack> //STL 堆棧容器
#include <stdexcept> //標准異常類
#include <streambuf> //底層輸入/輸出支持
#include <string> //字元串類
#include <utility> //STL 通用模板類
#include <vector> //STL 動態數組容器
#include <cwchar>
#include <cwctype>

using namespace std;

//////////////////////////////////////////////////////////////////////////

C99 增加

#include <complex.h> //復數處理
#include <fenv.h> //浮點環境
#include <inttypes.h> //整數格式轉換
#include <stdbool.h> //布爾環境
#include <stdint.h> //整型環境
#include <tgmath.h> //通用類型數學宏

C頭文件大全

分類函數,所在函數庫為ctype.h

int isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否則返回0

int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或數字('0'-'9')

返回非0值,否則返回0

int isascii(int ch) 若ch是字元(ASCII碼中的0-127)返回非0值,否則返回0

int iscntrl(int ch) 若ch是作廢字元(0x7F)或普通控制字元(0x00-0x1F)

返回非0值,否則返回0

int isdigit(int ch) 若ch是數字('0'-'9')返回非0值,否則返回0

int isgraph(int ch) 若ch是可列印字元(不含空格)(0x21-0x7E)返回非0值,否則返回0

int islower(int ch) 若ch是小寫字母('a'-'z')返回非0值,否則返回0

int isprint(int ch) 若ch是可列印字元(含空格)(0x20-0x7E)返回非0值,否則返回0

int ispunct(int ch) 若ch是標點字元(0x00-0x1F)返回非0值,否則返回0

int isspace(int ch) 若ch是空格(' '),水平製表符('\t'),回車符('\r'),

走紙換行('\f'),垂直製表符('\v'),換行符('\n')

返回非0值,否則返回0

int isupper(int ch) 若ch是大寫字母('A'-'Z')返回非0值,否則返回0

int isxdigit(int ch) 若ch是16進制數('0'-'9','A'-'F','a'-'f')返回非0值,

否則返回0

int tolower(int ch) 若ch是大寫字母('A'-'Z')返回相應的小寫字母('a'-'z')

int toupper(int ch) 若ch是小寫字母('a'-'z')返回相應的大寫字母('A'-'Z')

數學函數,所在函數庫為math.h、stdlib.h、string.h、float.h

int abs(int i) 返回整型參數i的絕對值

double cabs(struct complex znum) 返回復數znum的絕對值

double fabs(double x) 返回雙精度參數x的絕對值

long labs(long n) 返回長整型參數n的絕對值

double exp(double x) 返回指數函數ex的值

double frexp(double value,int *eptr) 返回value=x*2n中x的值,n存貯在eptr中

double ldexp(double value,int exp); 返回value*2exp的值

double log(double x) 返回logex的值

double log10(double x) 返回log10x的值

double pow(double x,double y) 返回xy的值

double pow10(int p) 返回10p的值

double sqrt(double x) 返回+√x的值

double acos(double x) 返回x的反餘弦cos-1(x)值,x為弧度

double asin(double x) 返回x的反正弦sin-1(x)值,x為弧度

double atan(double x) 返回x的反正切tan-1(x)值,x為弧度

double atan2(double y,double x) 返回y/x的反正切tan-1(x)值,y的x為弧度

double cos(double x) 返回x的餘弦cos(x)值,x為弧度

double sin(double x) 返回x的正弦sin(x)值,x為弧度

double tan(double x) 返回x的正切tan(x)值,x為弧度

double cosh(double x) 返回x的雙曲餘弦cosh(x)值,x為弧度

double sinh(double x) 返回x的雙曲正弦sinh(x)值,x為弧度

double tanh(double x) 返回x的雙曲正切tanh(x)值,x為弧度

double hypot(double x,double y) 返回直角三角形斜邊的長度(z),

x和y為直角邊的長度,z2=x2+y2

double ceil(double x) 返回不小於x的最小整數

double floor(double x) 返回不大於x的最大整數

void srand(unsigned seed) 初始化隨機數發生器

int rand() 產生一個隨機數並返回這個數

double poly(double x,int n,double c[])從參數產生一個多項式

double modf(double value,double *iptr)將雙精度數value分解成尾數和階

double fmod(double x,double y) 返回x/y的余數

double frexp(double value,int *eptr) 將雙精度數value分成尾數和階

double atof(char *nptr) 將字元串nptr轉換成浮點數並返回這個浮點數

double atoi(char *nptr) 將字元串nptr轉換成整數並返回這個整數

double atol(char *nptr) 將字元串nptr轉換成長整數並返回這個整數

char *ecvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *fcvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *gcvt(double value,int ndigit,char *buf)

將數value轉換成字元串並存於buf中,並返回buf的指針

char *ultoa(unsigned long value,char *string,int radix)

將無符號整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *ltoa(long value,char *string,int radix)

將長整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *itoa(int value,char *string,int radix)

將整數value轉換成字元串存入string,radix為轉換時所用基數

double atof(char *nptr) 將字元串nptr轉換成雙精度數,並返回這個數,錯誤返回0

int atoi(char *nptr) 將字元串nptr轉換成整型數, 並返回這個數,錯誤返回0

long atol(char *nptr) 將字元串nptr轉換成長整型數,並返回這個數,錯誤返回0

double strtod(char *str,char **endptr)將字元串str轉換成雙精度數,並返回這個數,

long strtol(char *str,char **endptr,int base)將字元串str轉換成長整型數,

並返回這個數,

int matherr(struct exception *e)

用戶修改數學錯誤返回信息函數(沒有必要使用)

double _matherr(_mexcep why,char *fun,double *arg1p,

double *arg2p,double retval)

用戶修改數學錯誤返回信息函數(沒有必要使用)

unsigned int _clear87() 清除浮點狀態字並返回原來的浮點狀態

void _fpreset() 重新初使化浮點數學程序包

unsigned int _status87() 返回浮點狀態字

目錄函數,所在函數庫為dir.h、dos.h

int chdir(char *path) 使指定的目錄path(如:"C:\\WPS")變成當前的工作目錄,成

功返回0

int findfirst(char *pathname,struct ffblk *ffblk,int attrib)查找指定的文件,成功

返回0

pathname為指定的目錄名和文件名,如"C:\\WPS\\TXT"

ffblk為指定的保存文件信息的一個結構,定義如下:

┏━━━━━━━━━━━━━━━━━━┓

┃struct ffblk ┃

┃{ ┃

┃ char ff_reserved[21]; /*DOS保留字*/┃

┃ char ff_attrib; /*文件屬性*/ ┃

┃ int ff_ftime; /*文件時間*/ ┃

┃ int ff_fdate; /*文件日期*/ ┃

┃ long ff_fsize; /*文件長度*/ ┃

┃ char ff_name[13]; /*文件名*/ ┃

┃} ┃

┗━━━━━━━━━━━━━━━━━━┛

attrib為文件屬性,由以下字元代表

┏━━━━━━━━━┳━━━━━━━━┓

┃FA_RDONLY 只讀文件┃FA_LABEL 卷標號┃

┃FA_HIDDEN 隱藏文件┃FA_DIREC 目錄 ┃

┃FA_SYSTEM 系統文件┃FA_ARCH 檔案 ┃

┗━━━━━━━━━┻━━━━━━━━┛

例:

struct ffblk ff;

findfirst("*.wps",&ff,FA_RDONLY);

int findnext(struct ffblk *ffblk) 取匹配finddirst的文件,成功返回0

void fumerge(char *path,char *drive,char *dir,char *name,char *ext)

此函數通過盤符drive(C:、A:等),路徑dir(\TC、\BC\LIB等),

文件名name(TC、WPS等),擴展名ext(.EXE、.COM等)組成一個文件名

存與path中.

int fnsplit(char *path,char *drive,char *dir,char *name,char *ext)

此函數將文件名path分解成盤符drive(C:、A:等),路徑dir(\TC、\BC\LIB等),

文件名name(TC、WPS等),擴展名ext(.EXE、.COM等),並分別存入相應的變數中.

int getcurdir(int drive,char *direc) 此函數返回指定驅動器的當前工作目錄名稱

drive 指定的驅動器(0=當前,1=A,2=B,3=C等)

direc 保存指定驅動器當前工作路徑的變數 成功返回0

char *getcwd(char *buf,iint n) 此函數取當前工作目錄並存入buf中,直到n個字

節長為為止.錯誤返回NULL

int getdisk() 取當前正在使用的驅動器,返回一個整數(0=A,1=B,2=C等)

int setdisk(int drive) 設置要使用的驅動器drive(0=A,1=B,2=C等),

返回可使用驅動器總數

int mkdir(char *pathname) 建立一個新的目錄pathname,成功返回0

int rmdir(char *pathname) 刪除一個目錄pathname,成功返回0

char *mktemp(char *template) 構造一個當前目錄上沒有的文件名並存於template中

char *searchpath(char *pathname) 利用MSDOS找出文件filename所在路徑,

,此函數使用DOS的PATH變數,未找到文件返回NULL

進程函數,所在函數庫為stdlib.h、process.h

void abort() 此函數通過調用具有出口代碼3的_exit寫一個終止信息於stderr,

並異常終止程序。無返回值

int exec…裝入和運行其它程序

int execl( char *pathname,char *arg0,char *arg1,…,char *argn,NULL)

int execle( char *pathname,char *arg0,char *arg1,…,

char *argn,NULL,char *envp[])

int execlp( char *pathname,char *arg0,char *arg1,…,NULL)

int execlpe(char *pathname,char *arg0,char *arg1,…,NULL,char *envp[])

int execv( char *pathname,char *argv[])

int execve( char *pathname,char *argv[],char *envp[])

int execvp( char *pathname,char *argv[])

int execvpe(char *pathname,char *argv[],char *envp[])

exec函數族裝入並運行程序pathname,並將參數

arg0(arg1,arg2,argv[],envp[])傳遞給子程序,出錯返回-1

在exec函數族中,後綴l、v、p、e添加到exec後,

所指定的函數將具有某種操作能力

有後綴 p時,函數可以利用DOS的PATH變數查找子程序文件。

l時,函數中被傳遞的參數個數固定。

v時,函數中被傳遞的參數個數不固定。

e時,函數傳遞指定參數envp,允許改變子進程的環境,

無後綴e時,子進程使用當前程序的環境。

void _exit(int status)終止當前程序,但不清理現場

void exit(int status) 終止當前程序,關閉所有文件,寫緩沖區的輸出(等待輸出),

並調用任何寄存器的"出口函數",無返回值

int spawn…運行子程序

int spawnl( int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL)

int spawnle( int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL,char *envp[])

int spawnlp( int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL)

int spawnlpe(int mode,char *pathname,char *arg0,char *arg1,…,

char *argn,NULL,char *envp[])

int spawnv( int mode,char *pathname,char *argv[])

int spawnve( int mode,char *pathname,char *argv[],char *envp[])

int spawnvp( int mode,char *pathname,char *argv[])

int spawnvpe(int mode,char *pathname,char *argv[],char *envp[])

spawn函數族在mode模式下運行子程序pathname,並將參數

arg0(arg1,arg2,argv[],envp[])傳遞給子程序.出錯返回-1

mode為運行模式

mode為 P_WAIT 表示在子程序運行完後返回本程序

P_NOWAIT 表示在子程序運行時同時運行本程序(不可用)

P_OVERLAY表示在本程序退出後運行子程序

在spawn函數族中,後綴l、v、p、e添加到spawn後,

所指定的函數將具有某種操作能力

有後綴 p時, 函數利用DOS的PATH查找子程序文件

l時, 函數傳遞的參數個數固定.

v時, 函數傳遞的參數個數不固定.

e時, 指定參數envp可以傳遞給子程序,允許改變子程序運行環境.

當無後綴e時,子程序使用本程序的環境.

int system(char *command) 將MSDOS命令command傳遞給DOS執行

轉換子程序,函數庫為math.h、stdlib.h、ctype.h、float.h

char *ecvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *fcvt(double value,int ndigit,int *decpt,int *sign)

將浮點數value轉換成字元串並返回該字元串

char *gcvt(double value,int ndigit,char *buf)

將數value轉換成字元串並存於buf中,並返回buf的指針

char *ultoa(unsigned long value,char *string,int radix)

將無符號整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *ltoa(long value,char *string,int radix)

將長整型數value轉換成字元串並返回該字元串,radix為轉換時所用基數

char *itoa(int value,char *string,int radix)

將整數value轉換成字元串存入string,radix為轉換時所用基數

double atof(char *nptr) 將字元串nptr轉換成雙精度數,並返回這個數,錯誤返回0

int atoi(char *nptr) 將字元串nptr轉換成整型數, 並返回這個數,錯誤返回0

long atol(char *nptr) 將字元串nptr轉換成長整型數,並返回這個數,錯誤返回0

double strtod(char *str,char **endptr)將字元串str轉換成雙精度數,並返回這個數,

long strtol(char *str,char **endptr,int base)將字元串str轉換成長整型數,

並返回這個數,

int toascii(int c) 返回c相應的ASCII

int tolower(int ch) 若ch是大寫字母('A'-'Z')返回相應的小寫字母('a'-'z')

int _tolower(int ch) 返回ch相應的小寫字母('a'-'z')

int toupper(int ch) 若ch是小寫字母('a'-'z')返回相應的大寫字母('A'-'Z')

int _toupper(int ch) 返回ch相應的大寫字母('A'-'Z')

診斷函數,所在函數庫為assert.h、math.h

void assert(int test) 一個擴展成if語句那樣的宏,如果test測試失敗,

就顯示一個信息並異常終止程序,無返回值

void perror(char *string) 本函數將顯示最近一次的錯誤信息,格式如下:

字元串string:錯誤信息

char *strerror(char *str) 本函數返回最近一次的錯誤信息,格式如下:

字元串str:錯誤信息

int matherr(struct exception *e)

用戶修改數學錯誤返回信息函數(沒有必要使用)

double _matherr(_mexcep why,char *fun,double *arg1p,

double *arg2p,double retval)

用戶修改數學錯誤返回信息函數(沒有必要使用)

輸入輸出子程序,函數庫為io.h、conio.h、stat.h、dos.h、stdio.h、signal.h

int kbhit() 本函數返回最近所敲的按鍵

int fgetchar() 從控制台(鍵盤)讀一個字元,顯示在屏幕上

int getch() 從控制台(鍵盤)讀一個字元,不顯示在屏幕上

int putch() 向控制台(鍵盤)寫一個字元

int getchar() 從控制台(鍵盤)讀一個字元,顯示在屏幕上

int putchar() 向控制台(鍵盤)寫一個字元

int getche() 從控制台(鍵盤)讀一個字元,顯示在屏幕上

int ungetch(int c) 把字元c退回給控制台(鍵盤)

char *cgets(char *string) 從控制台(鍵盤)讀入字元串存於string中

int scanf(char *format[,argument…])從控制台讀入一個字元串,分別對各個參數進行

賦值,使用BIOS進行輸出

int vscanf(char *format,Valist param)從控制台讀入一個字元串,分別對各個參數進行

賦值,使用BIOS進行輸出,參數從Valist param中取得

int cscanf(char *format[,argument…])從控制台讀入一個字元串,分別對各個參數進行

賦值,直接對控制台作操作,比如顯示器在顯示時字元時即為直接寫頻方式顯示

int sscanf(char *string,char *format[,argument,…])通過字元串string,分別對各個

參數進行賦值

int vsscanf(char *string,char *format,Vlist param)通過字元串string,分別對各個

參數進行賦值,參數從Vlist param中取得

int puts(char *string) 發關一個字元串string給控制台(顯示器),

使用BIOS進行輸出

void cputs(char *string) 發送一個字元串string給控制台(顯示器),

直接對控制台作操作,比如顯示器即為直接寫頻方式顯示

int printf(char *format[,argument,…]) 發送格式化字元串輸出給控制台(顯示器)

使用BIOS進行輸出

int vprintf(char *format,Valist param) 發送格式化字元串輸出給控制台(顯示器)

使用BIOS進行輸出,參數從Valist param中取得

int cprintf(char *format[,argument,…]) 發送格式化字元串輸出給控制台(顯示器),

直接對控制台作操作,比如顯示器即為直接寫頻方式顯示

int vcprintf(char *format,Valist param)發送格式化字元串輸出給控制台(顯示器),

直接對控制台作操作,比如顯示器即為直接寫頻方式顯示,

參數從Valist param中取得

int sprintf(char *string,char *format[,argument,…])

將字元串string的內容重新寫為格式化後的字元串

int vsprintf(char *string,char *format,Valist param)

將字元串string的內容重新寫為格式化後的字元串,參數從Valist param中取得

int rename(char *oldname,char *newname)將文件oldname的名稱改為newname

int ioctl(int handle,int cmd[,int *argdx,int argcx])

還有很多 ,由於字數上限了,就發這么多吧!

閱讀全文

與ultoa頭文件相關的資料

熱點內容
劉駿微信 瀏覽:113
書旗舊版本80 瀏覽:467
教編程考什麼證 瀏覽:990
下載編程貓後哪裡有客服 瀏覽:13
如何編輯歌曲文件格式 瀏覽:638
cf無限領取cdk工具 瀏覽:350
如何讓手機文件保存到電腦上 瀏覽:459
sa資料庫默認密碼是多少 瀏覽:191
電腦正在查找文件 瀏覽:541
一個文件盒省內寄順豐多少錢 瀏覽:41
誅仙62坐騎怎麼升級到63 瀏覽:926
linux以日期查看日誌記錄 瀏覽:446
工業大數據是什麼東西 瀏覽:881
魅族note3怎麼重置網路 瀏覽:510
c語言程序設計模 瀏覽:92
兒童怎麼做可編程機 瀏覽:603
數據計算屬於什麼統計學 瀏覽:921
07word怎麼去掉標記 瀏覽:979
qq緩存的數據是什麼 瀏覽:348
LED主Kv文件多少兆 瀏覽:856

友情鏈接