回 帖 发 新 帖 刷新版面

主题:vc6的设置问题

#include "string.h"
main()
{
    int k;
    static char st1[15],st2[]="C Language";
    printf("input a string:\n");
    gets(st1);
    k=strcmp(st1,st2);
    if(k==0)
        printf("st1=st2\n");
    if(k>0)
        printf("st1>st2\n");
    if(k<0)
        printf("st1<st2\n");
}

想用vc6,但不太会用VC6,总提示是否创建,F5以后也不运行。。。

回复列表 (共1个回复)

沙发

有个选项应该是compile&run编译运行之类的说法,那个才执行代码

我来回复

您尚未登录,请登录后再回复。点此登录或注册