[halp] I don't get this

Status
Not open for further replies.

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
How do I make a program that doesn't look like a .bat file in C++?
See in a .bat file (batch) to say "Hello world!"
I'd do something like this:
Code:
@ECHO OFF
ECHO Hello world!
pause
Now why would I go out of my way to do the same thing but like this:
Code:
#include <iostream>

int main()
{
    using namespace std;
    cout << "Hello world!" << endl;
    return 0;
}
What I'm saying is I don't want it to look like a command line program, get what I mean?



Thanks
 

Heaplink

Developer & Designer
Nov 9, 2011
510
173
And heres were wxWidgets gets in the picture. But you might try out Qt also, since it's easy to use for cross platform development in C++ (yes with GUI n sheeze)
 
Status
Not open for further replies.

Users who are viewing this thread

Top