Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
325 views
in Technique[技术] by (71.8m points)

c - How to take command line argument in Codeblock 10.05?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...