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

后端 未结 13 2383
心在旅途
心在旅途 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:07

    I suppose it is designed to be compatible with C, and in C times people didn't really care that much about signed/unsigned correctness.

提交回复
热议问题