小编Jus*_*own的帖子

在C语言中将字符串转换为long long

我无法通过环礁函数在c中正确设置long long值.这是我的例子:

#include <stdio.h>

int main(void) {
    char s[30] = { "115" };
    long long t = atoll(s);

    printf("Value is: %lld\n", t);

    return 0;
}
Run Code Online (Sandbox Code Playgroud)

打印:值为:0

这有效:

printf("Value is: %lld\n", atoll(s));
Run Code Online (Sandbox Code Playgroud)

这里发生了什么?

c string long-long

7
推荐指数
1
解决办法
9384
查看次数

标签 统计

c ×1

long-long ×1

string ×1