How can I pass main's *argv[] to a function?

前端 未结 3 1270
你的背包
你的背包 2021-02-05 08:19

I have a program that can accept command-line arguments and I want to access the arguments, entered by the user, from a function. How can I pass the *argv[], from <

3条回答
  •  难免孤独
    2021-02-05 08:45

    SomeResultType ParseArgs( size_t count, char**  args ) {
        // parse 'em
    }
    

    Or...

    SomeResultType ParseArgs( size_t count, char*  args[] ) {
        // parse 'em
    }
    

    And then...

    int main( int size_t argc, char* argv[] ) {
        ParseArgs( argv );
    }
    

提交回复
热议问题