Brian wrote:
> I think they call it a platform program when you are using a Form such as
> creating a form with button using visual studio c++
> Not everyone uses the Microsoft Visual Studio C++ that requires a runtime
> file and most programs seem to have pull down menus and buttons to click
> on so what do others use to create a form when writing a program in C++?
It appears that you are asking how you could use C++ to develop graphical
user interfaces. If that's what you intended to ask then the answer is
simple: pick a widget toolkit or even an application framework and code
away.
There are plenty to choose from besides Microsoft's offering. I suspect Qt
will be the easiest to pick up, in spite of their signals and slots
approach. If it interests you, take a look at:
http://qt-project.org/
> A beginner is taught to use functions such as cin and cout but they are
> for console programming and most commercially created C++ programs don't
> have a DOS screen that pops up when the user uses the program.
You are a bit confused, probably due to some misconceptions. Read up on
standard streams. The "DOS screen" nonsense is just a very specific way a
command line interpreter (in your case, Microsoft's notoriously poor
implementation of one) interprets stdout and stderr. Standard streams are
much more than a way to present the user with a boring text dump.
http://en.wikipedia.org/wiki/Standard_streams
Rui Maciel