问答详情
源自:2-3 变量及赋值

C语言标识符和变量名的区别

C语言中变量名和标识符有什么区别?

提问者:之青君 2016-03-08 21:57

个回答

  • 疯狂原始人的家
    2016-03-08 22:21:03
    已采纳

    C 语言规定,标识符可以是字母(A~Z,a~z)、数字(0~9)、下划线_组成的字符串,并且第一个字符必须是字母或下划线。

    变量就是可以变化的量,而每个变量都会有一个名字(标识符)。

  • weixin_慕丝2466604
    2020-07-24 21:43:20

    The identifier is only used to identify an entity uniquely in a program at the time of execution whereas, a variable is a name given to a memory location, that is used to hold a value. Variable is only a kind of identifier, other kinds of identifiers are function names, class names, structure names, etc.

  • 慕哥0126375
    2017-11-22 10:44:07

    也就是两个是一样的?


  • wuli太阳月亮
    2016-03-08 23:18:47

    标识符可以是字母(A~Z,a~z)、数字(0~9)、下划线_组成的字符串,并且第一个字符必须是字母或下划线。变量就是可以变化的量,而每个变量都会有一个名字(标识符)。

  • 慕斯卡6687999
    2016-03-08 22:25:56

    答案同上