即使在编译过程完成后,源文件也未编译

时间:2013-09-02 17:59:16

标签: c++ c dev-c++

我在Windows 8上安装了Dev C ++,这是我的第一个程序,但它运行顺利直到我运行它。

这是我的第一个程序:

The first program

当我编译它时......

Compilation

然而,当我运行它时,问题出现了......

Error in running the program

然而,编译器日志显示以下消息:

Compiler: Default compiler
Executing  gcc.exe...
gcc.exe "C:\Users\Zainab\Downloads\Table.c (2).c" -o "C:\Users\Zainab\Downloads\Table.c     (2).exe"    -I"C:\Dev-Cpp\include"   -L"C:\Dev-Cpp\lib" 
gcc.exe: Internal error: Aborted (program collect2)
Please submit a full bug report.

CODE:

#include<stdio.h>

int main()
{
    int a, b, c=1;

    printf("Enter the table of:");
    scanf("%d", &a);
    printf("Enter the number of times:");
    scanf("%d", &b);

    while (c <= b) {
        printf("%d", a);
        printf("* %d", c);
        printf("= %d", a*c);

        if (c < b) {
            printf("\n");
        }

        c++;
    }

    return 0;
    getch();
}

1 个答案:

答案 0 :(得分:4)

使用更好的工具。 Dev-C ++已被放弃。 一个好的免费开源C ++ IDE是CodeBlocks。 还有其他例如Orwell Dev-C ++