Answers:
运行gcc --version
,结果将是这样的:
gcc (GCC) 4.4.0
Copyright (C) 2009 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
如果这样不起作用,则可能没有PATH
正确设置编译器设置(我相信如果在Windows上使用MinGW会很常见),在这种情况下,您可以先在Code :: Blocks中执行以下操作来检查编译器的位置:
Settings
->Compiler and Debugger
GNU GCC Compiler
Toolchain executables
标签然后,使用命令行,移至给定目录,然后移至bin
子目录,然后尝试gcc --version
从此处运行。