欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C语言:“Process exited after 23.77 seconds with return value 3221225620”的解决方法。

程序员文章站 2022-06-01 15:46:34
...

C语言:“Process exited after 23.77 seconds with return value 3221225620”的解决方法。
在Dev-c++上运行代码时,编译运行时未报错,但输出的结果错误。
如下图:
C语言:“Process exited after 23.77 seconds with return value 3221225620”的解决方法。

对于这种情况检查scanf函数的输入模式是否有问题:

scanf("%d%d",&a&b);                      /*在shell中输入ab间应为空格*/

C语言:“Process exited after 23.77 seconds with return value 3221225620”的解决方法。

scanf("%d,%d",&a&b);                     /*在shell中输入ab间应为,且为英文模式*/

C语言:“Process exited after 23.77 seconds with return value 3221225620”的解决方法。

相关标签: c语言