Thank you so much for the help
Now I can compile already. I first created
Command line Utility/Standard Tool
I got main.cpp in the list. Then I right-clicked this "main.cpp" and then I add new file
BSD/C++ File
I got something.cpp and something.h two files. then I just copy and paste the contents from my original files from DEV-C++ that I can't compile.
Fortunately I can compile right now. And it shows the exact output as in DEV-C++. But I got these extra outputs in the compilation time.
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
X-CODE OUTPUT
Input through getline : andy
RESULT : andy
andy(2086) malloc:
* Deallocation of a pointer not malloced: 0x90025c22; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
andy(2086) malloc:
* Deallocation of a pointer not malloced: 0x13564; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
andy(2086) malloc:
* Deallocation of a pointer not malloced: 0x90025c22; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
andy(2086) malloc:
* Deallocation of a pointer not malloced: 0x8230; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
andy(2086) malloc:
* Deallocation of a pointer not malloced: 0xaaa9a8a7; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
andy(2086) malloc:
* Deallocation of a pointer not malloced: 0xbffffa48; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
andy(2086) malloc:
* Deallocation of a pointer not malloced: 0x3c; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
Number of Pass Function : 27
Number of Fail Function : 0
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
--------------------------------------------------------
DEV-C++ OUTPUT
Input through getline : andy
RESULT : andy
Number of Pass Function : 27
Number of Fail Function : 0
--------------------------------------------------------
Is there anyway I can create empty project and start compiling ? Why the Build icon is disable in an empty project ?
Thank you...