Why is argc an 'int' (rather than an 'unsigned int')?

后端 未结 13 2239
心在旅途
心在旅途 2021-01-31 01:37

Why is the command line arguments count variable (traditionally argc) an int instead of an unsigned int? Is there a technical reason for t

13条回答
  •  遥遥无期
    2021-01-31 02:15

    As a solution to your warning problem, you could do something like this to suppress the warnings:

    const unsigned int uargc = (unsigned int) argc;
    

提交回复
热议问题