编程小土豆 发表于 2019-8-14 11:25:11

文件Cannot open 怎么办

#include <stdio.h>
#include <conio.h>


void main()
{
        int i;
        char *face = ":)";
        printf("%18s%18s",*face, *face);
        for(i=0;i<9;i++)
        {
                printf("\n");
                printf("%(9-i)c%(9-i)c\n", 0xa8, 0x80);
        }
        getch();
}


就是这个打印楼梯和笑脸的题,编译没有错误,可是一执行就不行:cannot open Debug/Cpp1.exe for writing
不知道怎么回事,请大家帮忙指点一下

迷雾少年 发表于 2019-8-14 11:30:17

本帖最后由 迷雾少年 于 2019-8-14 11:33 编辑

1.打开任务管理器结束 Cpp1.exe这个进程
2.关掉VC6,重新打开这个项目

编程小土豆 发表于 2019-8-14 21:41:44

他又提示 unhandled exception 了{:10_243:}

38299676 发表于 2019-8-14 22:13:37

屏蔽掉第9行试试 要是正常了 就是第8行的问题,字符指针指向的字符串的结尾不是0 pringf 函数一直向下读.结果读到了不应该读的地方也没有遇到0
发生
unhandled exception 错误
页: [1]
查看完整版本: 文件Cannot open 怎么办