Hey all,
If I pass an argument in the command line the console never displays. If I remove it, the console works. Is this a bug?
Here's my code:
#include <iostream>
using namespace std;
int main(int argc, char **argv)
{
cout<<"hello world\n";
cout<<argv[0]<<endl;
cout<<argv[1]<<endl;
return 0;
}
and I'm just running it with "main.exe -blah"
-Steve
Passing Arguments / Console Window
-
- CodeLite Curious
- Posts: 1
- Joined: Tue Mar 30, 2010 4:03 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Passing Arguments / Console Window
Try runing it under gdb and see what happended
Eran
Eran
Make sure you have read the HOW TO POST thread