Re: [Dev-C++] How to set program arguments?
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
From: Abhijit S. <mu...@gm...> - 2002-08-28 08:39:49
|
> Hi all! > > I want to debbug my app, but I can't find how > to set program arguments in Dev-C++ 4.9.5.0. > Please, help. > > Piotr As of now, Dev doesn't have support for specifying args using the IDE, you'll have to do something like this: int main(int argc, char *argv[]) { argc = 3; argv = { argv[0], "-output", "foo.bar" }; } |