gpt4 book ai didi

c - 如何修复 "gcc isn' t 被识别为内部命令“在 Clion for Window 上?

转载 作者:行者123 更新时间:2023-11-30 14:35:17 26 4
gpt4 key购买 nike

我关注了Clion installation guide我安装了MinGW .

现在我编写了一个 C 程序,并尝试在终端中输入 gcc test.c 但我得到 gcc 不是一个可识别的内部命令

这是我的程序:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>

struct a_struct {int a; int b; int c;};

int main()
{

struct a_struct* pa = (struct a_struct*) 1000;
printf ("pa=%ld\n", (long)pa);

struct a_struct* pb = &pa[10];
printf ("pb=%ld\n", (long)pb);

struct a_struct* pc = pa + 10;
printf ("pc=%ld\n", (long)pc);

struct a_struct* pd = pc--;
printf ("pc=%ld, pd=%ld\n", (long)pc, (long)pd);

struct a_struct* pe = ++pb;
printf ("pe=%ld, pb=%ld\n", (long)pe, (long)pb);

return 0;
}

在 Clion 设置中我有:

enter image description here

最佳答案

您应将 gcc.exe 的路径(通常位于 @ C:\MinGW\bin)添加到 PATH 环境变量(用户范围或系统范围)

关于c - 如何修复 "gcc isn' t 被识别为内部命令“在 Clion for Window 上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58604662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com