Friday

MinGW g++: error: CreateProcess: No such file or directory (solved)

Problem:
C:\MinGW\bin>g++ --version
g++ (GCC) 4.6.2
Copyright (C) 2011 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.

C:\MinGW\bin>g++ cpp_v1.cpp
g++: error: CreateProcess: No such file or directory

Solution:
Uninstall the old CodeBlocks program from your PC.

Note:
Do this, only if you want to try C++11 or C++0x.

No comments:

Newton-Raphson Method in C++

The Newton Raphson Method is an open method used to find the roots of a function. It employs the technique of linear approximation and invol...