在vim中使用SingleCompile,如果我在
这样的文件上运行:SCCompileRun
#include<stdio.h>
main() {
char s[100];
printf("Enter some text to store in s\n");
scanf("%s" , s );
printf("\n%s\n", s);
return ;
}
我得到的输出如下:
Press ENTER or type command to continue
abc
Enter some text to store in s
abc
Press ENTER or type command to continue
在整个程序运行后我看到Enter some text to store in s
。是否可以在执行时获得程序的输出?
答案 0 :(得分:0)
Per @FDinoff,fflush(stdout)工作。