gpt4 book ai didi

objective-c - ATOI() 结果为 "Exited Unexpectedly/Lost Connection"

转载 作者:太空宇宙 更新时间:2023-11-04 03:49:57 25 4
gpt4 key购买 nike

我正在尝试从 Xcode 5 运行一个简单的命令行程序。当我运行它时,我在 shell 中得到用户输入提示,但随后它崩溃并给我错误 Exited Unexpectedly/Lost Connection

这是我的代码。如果我缺少库引用,或者我的代码是否有问题,您能告诉我吗?

我还想提一下,在 Build Phases --> Link Binary With Libraries 中,我引用了 libreadline.dylib

#include <stdio.h>
#include <stdlib.h>

#import <readline/readline.h>
//#import <stdio.h>

int main(int argc, const char * argv[])
{
printf("Where should I start counting? ");

int i;
int countFrom = atoi(readline(NULL));

for (i = countFrom; i >= 0; i -= 3) {
printf("%d\n",i);

if (i % 5 == 0){
printf("Found one!\n");
}

}

return 0;
}

最佳答案

遇到了类似的问题。发现用小键盘按下“enter”键会导致 readline(NULL) 崩溃。通过按“返回”键解决了这个问题。这是使用 Mac 附带的键盘。希望这对您有所帮助!

关于objective-c - ATOI() 结果为 "Exited Unexpectedly/Lost Connection",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21504066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com