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
", 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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…