This is kind of a continuation of my last post about an easier program to code C++ in.
Some one suggested in a reply to try Borland C++ Builder 6. So I bought it after researching more on it.
It turns out that it has all the features I wanted and more. I really want to use this program to learn C++ and code my programs. But then I come to this question. Which program will compile better code?
Like for instance in MS Visual C++ 6 you use the code:
code:
MessageBox("Test")
To display a message box with the word test on it.
But in Borland C++ builder 6 you use this code:
code:
Application->MessageBox("Testing", "Test", MB_OK);
Does MS Visual C++ 6 just substitute the "Application->" and ", "Test", MB_OK" parts for you when you compile the program or that just extra crap Borland adds?
Any suggestions will be greatly appreciated.