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?
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.