How to take command line argument in Codeblock 10.05?

Green goblin picture Green goblin · Aug 9, 2012 · Viewed 73.2k times · Source

I am writing a C code in codeblock version 10.05.

The program is:

int main(int argc , char *argv[])
{
    printf("Entered number is %s \n", argv[1]);
    return 0;
}

However, when i compile current file, & then run the program, a terminal appears. But, the terminal doesn't wait for command line input & it directly outputs

<null>

Note that in the above program, i have omitted the code for handling zero number of command line arguments. How can i supply command line arguments?

Answer

xQuare picture xQuare · Aug 9, 2012

With code::blocks you can set your command line arguments like this in the menu:

Project > Set programs' arguments...

This opens a window where you can insert your parameters.