我无法通过环礁函数在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)
这里发生了什么?