使用SingleCompile在vim中输出程序

时间:2014-10-10 16:37:34

标签: vim vim-plugin

在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。是否可以在执行时获得程序的输出?

1 个答案:

答案 0 :(得分:0)

Per @FDinoff,fflush(stdout)工作。