What's the exact role of “significant characters” in C (variables)?

后端 未结 4 1011
无人及你
无人及你 2020-12-10 16:32

What is the exact role of \"significant characters\" in C , especially in the field of variables? I have read the topic “(K&R) At Least the first 31 characters...”, but

4条回答
  •  [愿得一人]
    2020-12-10 17:09

    This is what I think,

    It means that all the characters, after first 31 characters will be ignored, i.e. variable names:

    ab..(27 characters)..yz123
    ab..(27 characters)..yz578

    will be treated as:

    ab..(27 characters)..yz

    and so you can get redeclaration error...

提交回复
热议问题