Macemore
Circumcised pineapples
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:
Now why would I go out of my way to do the same thing but like this:
What I'm saying is I don't want it to look like a command line program, get what I mean?
Thanks
See in a .bat file (batch) to say "Hello world!"
I'd do something like this:
Code:
@ECHO OFF
ECHO Hello world!
pause
Code:
#include <iostream>
int main()
{
using namespace std;
cout << "Hello world!" << endl;
return 0;
}
Thanks