当使用输入功能“scanf”时在 Xcode 4 的调试控制台中
问题就在这里。当我在 Xcode 4 中使用调试(GCC)时。如果我在程序中使用“scanf”,似乎无法在调试控制台中输入数字。我必须在数字后面添加一个“/”,然后它才能正常工作。就像如何输入标准中提供的解决方案一样在 Xcode 调试器控制台中输入。在所需的输入数字后附加斜杠是没有意义的。
例如: 如果程序是类似的:
...
int num;
scanf("%d", &num);
...
那么当它运行到该行时,我必须输入“123/”,否则它不会给我任何响应。
有人遇到同样的问题吗?有什么解决方案可以解决该问题并使其就像在标准控制台环境中运行一样。
Here is the problem. When I am using the debugging (GCC) in Xcode 4. It seems I can't input a number in debugging console if I use "scanf" in my program. I have to add a "/" after the number then it can act as usual. Just like the solution provided in How to Enter Standard Input in Xcode Debugger Console. Appending a slash after a desired input number does not make sense.
For example:
If the program is something similar:
...
int num;
scanf("%d", &num);
...
Then when it ran to the line, I have to type "123/", or it won't give me any response.
Does anyone meet the same problem? Is there any solution to solve the problem and make it just like running in standard console environment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须按 shift + enter 才能正常工作。
You have to press shift + enter for it to work.