问题详情

在C语言中,函数中变量的隐含存储类别是______。


A、auto

B、static

C、extern

D、无存储类别

时间:2022-01-05 14:39 关键词:

答案解析

A
解析:函数中变量的存储类别包括auto,static,extern,其中auto为隐含存储类别,static为静态存储类别,register是寄存器存储类别。