I think i might have goten a C::B related problem, I tried to run a new program that were supposed to do 5 * 5 * 5.
#include <iostream>
#include <cmath>
#include <cstdlib>
int main(){
using namespace std;
double rainbow;
rainbow = pow(5,3);
cout << rainbow << endl;
cin.get();
return 0;
}
No output when it tried to build, but the error log said:
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings
-------------- Build: Release in begining functions ---------------
Compiling: main.cpp
mingw32-g++.exe: installation problem, cannot exec `cc1plus': No such file or directory
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings