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