词条 | atoi () |
释义 | § 名称 函数名: atoi 功 能: 把字符串转换成长整型数 用 法: int atoi(const char *nptr); § 程序例 #include <stdlib.h> #include <stdio.h> int main(void) { int n; char *str = "12345.67"; n = atoi(str); printf("string = %s integer = %d\", str, n); return 0; } |
随便看 |
|
百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。