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

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

    The declaration for main() was defined before the unsigned types were added to the language - see DMR's page on 'Primeval C'. It was too late to change when unsigned was added.

提交回复
热议问题