此C語言函式 A

2021-06-26 09:48:07 字數 3863 閱讀 2039

函式名: abort

功 能: 異常終止乙個程序

用 法: void abort(void);

程式例:

#include 

#include

intmain

(void

)

函式名: abs

功 能: 求整數的絕對值

用 法: int abs(int i);

程式例:

#include 

#include

intmain

(void

)

函式名: absread, abswirte

功 能: 絕對磁碟扇區讀、寫資料

用 法: int absread(int drive, int nsects, int sectno, void *buffer);

int

abswrite

(int drive, int nsects, in tsectno, void *buffer);

程式例:

/* absread example */ 

#include

#include

#include

#include

intmain

(void

)printf

("read ok\n");

strt =

3; for(i

=0; i

<80; i++)

printf

("\n");

return(0

); }

函式名: access

功 能: 確定檔案的訪問許可權

用 法: int access(const char *filename, int amode);

程式例:

#include 

#include

intfile_exists

(char *filename);

intmain

(void

)int

file_exists

(char *filename)

函式名: acos

功 能: 反余弦函式

用 法: double acos(double x);

程式例:

#include 

#include

intmain

(void

)

函式名: allocmem

功 能: 分配dos儲存段

用 法: int allocmem(unsigned size, unsigned *seg);

程式例:

#include 

#include

#include

intmain

(void

)

函式名: arc

功 能: 畫一弧線

用 法: void far arc(int x, int y, int stangle, int endangle, int radius);

程式例:

#include 

#include

#include

#include

intmain

(void)

midx = getmaxx(

) / 2;

midy = getmaxy(

) / 2;

setcolor(getmaxcolor(

));

/* draw arc */

arc(midx, midy, stangle, endangle, radius);

/* clean up */

getch

();

closegraph(

); return

0; }

函式名: asctime

功 能: 轉換日期和時間為ascii碼

用 法: char *asctime(const struct tm *tblock);

程式例:

#include 

#include

#include

intmain

(void

)

函式名: asin

功 能: 反正弦函式

用 法: double asin(double x);

程式例:

#include 

#include

intmain

(void

)

函式名: assert

功 能: 測試乙個條件並可能使程式終止

用 法: void assert(int test);

程式例:

#include 

#include

#include

struct item ;

/* add item to list, make sure list is

notnull */

void

additem

(struct item *itemptr)

intmain

(void

)

函式名: atan

功 能: 反正切函式

用 法: double atan(double x);

程式例:

#include 

#include

intmain

(void

)

函式名: atan2

功 能: 計算y/x的反正切值

用 法: double atan2(double y, double x);

程式例:

#include 

#include

intmain

(void

)

函式名: atexit

功 能: 註冊終止函式

用 法: int atexit(atexit_t func);

程式例:

#include 

#include

void

exit_fn1

(void

)void

exit_fn2

(void

)int

main

(void

)

函式名: atof

功 能: 把字串轉換成浮點數

用 法: double atof(const char *nptr);

程式例:

#include 

#include

intmain

(void

)

函式名: atoi

功 能: 把字串轉換成長整型數

用 法: int atoi(const char *nptr);

程式例:

#include 

#include

intmain

(void

)

函式名: atol

功 能: 把字串轉換成長整型數

用 法: long atol(const char *nptr);

程式例:

#include 

#include

intmain

(void

)

由 書畫**軟體 整理 更愜意的讀、更舒心的寫、更輕鬆的發布

C語言 函式

1 實參和形參在數量上,型別上,順序上應嚴格一致,否則會發生 型別不匹配 錯誤。2 實參可以是常量,變數,表示式甚至是函式。但是在傳遞給函式前,必須有確定的值。3 形參變數只有在被呼叫時才分配記憶體單元,只有在函式內部有效,函式結束後不能再使用。4 實參和形參佔據不同的儲存單元。5 函式預設採用值傳...

c語言 函式

函式是實現某個功能的 段 函式之間的關係是並列的,不能巢狀 函式的定義 函式的返回值型別 函式名 引數的型別 引數名1.正常的函式有三部分 1.函式的宣告 2.函式的定義 3.函式的呼叫 如果函式在定義之前被呼叫的話,需要對函式提前進行宣告,當然在定義之後在呼叫如果沒有宣告也不會提示錯誤 函式的返回...

C語言函式

和變數 控制流 條件一樣 函式也是現代程式語言的基本組成部分。他可以使我們在應用中重複利用一塊 對於 的組織和維護是很有必要的。您將在ios和os x的框架中發現大量的例子。像其他的基礎元素一樣,object c的函式也是建立在c語言函式之上的。這章我們將介紹c語言最重要的方面,包括基本語法 宣告和...