0
What is the failure in the build of the following program?
#include <iostream> using namespace std; int main () {cout <<"Hello world!"<< endl; return 0;} I was following SoloLearn's C++ course and everything was going well. I've managed to access this main program, but when I selected to build it, the building process instantly failed with 0 errors and 0 warnings. Here's some data, If needed: -My computer is a Mac OS X 10.6.8. -The proyect in which the program is: /codeblocks/Formal. -The Build Log says: -pg and -fomit-frame-pointer are incompatible (May be hint).
2 Réponses
+ 1
Thank you very much! The program finally ran.