c语言的空格问题

c语言中的#define、typedef、main函数等等,会遇到多个空格,或者回车,或者其他不可见字符,为什么可以正常运行呢?系统是怎样判断后面的其他字符是无效字符?

  比如typedef  struct        \t    A     B;


Format Specification Fields: scanf and wscanf Functions
A format specification has the following form:

%[*] [width] [{h | l | I64 | L}]type

The format argument specifies the interpretation of the input and can contain one or more of the following: 

White-space characters: blank (' '); tab ('\t'); or newline ('\n'). A white-space character causes scanf to read, but not store, all consecutive white-space characters

in the input up to the next non–white-space character. One white-space character in the format matches any number (including 0) and combination of

white-space characters in the input.


Non–white-space characters, except for the percent sign (%). A non–white-space character causes scanf to read, but not store, a matching

non–white-space character.If the next character in stdin does not match, scanf terminates.


Format specifications, introduced by the percent sign (%). A format specification causes scanf to read and convert characters in the input into values

 of a specified type.

The value is assigned to an argument in the argument list. 
The format is read from left to right. Characters outside format specifications are expected to match the sequence of characters in stdin; the matching characters

 in stdin are scanned but not stored. If a character in stdin conflicts with the format specification, scanf terminates, and the character is left in stdin as if it had

 not been read.

When the first format specification is encountered, the value of the first input field is converted according to this specification and stored in the location that is

 specified by the first argument. The second format specification causes the second input field to be converted and stored in the second argument, and so on

 through the end of the format string.

An input field is defined as all characters up to the first white-space character (space, tab, or newline), or up to the first character that cannot be converted according

 to the format specification, or until the field width (if specified) is reached. If there are too many arguments for the given specifications, the extra arguments are

evaluated but ignored. The results are unpredictable if there are not enough arguments for the format specification.

Each field of the format specification is a single character or a number signifying a particular format option. The type character, which appears after the last

optional format field, determines whether the input field is interpreted as a character, a string, or a number. 

The simplest format specification contains only the percent sign and a type character (for example, %s). If a percent sign (%) is followed by a character that

 has no meaning as a format-control character, that character and the following characters (up to the next percent sign) are treated as an ordinary sequence of characters, that is, a

 sequence of characters that must match the input. For example, to specify that a percent-sign character is to be input, use %%.

An asterisk (*) following the percent sign suppresses assignment of the next input field, which is interpreted as a field of the specified type. The field is

scanned but not stored.

---------------------------------------------------------------------------------我是分割线-----------------------------------------------------------

理解:

   c语言的特殊格式:

     %[*] [width] [{h | l | I64 | L}]type

   系统输入的时候将这些特殊格式,作为白名单判断,一旦遇到这些格式,就自动判断一次输入结束,将结果存入变量保存,接着接收第二个参数。最终以%s。。。etc格式化一起统一输出!

  最后一个%格式化,没看懂,以后在研究。。。。。。

<think>好的,用户问的是关于C语言中的“空格标识符”,但根据我的知识,C语言并没有“空格标识符”这个概念。首先我需要确认用户可能指的是什么。可能的情况有两种:一种是标识符中包含空格,另一种是使用空格作为分隔符的标识符。 首先,C语言的标识符命名规则不允许包含空格。标识符只能由字母、数字和下划线组成,且不能以数字开头。所以如果用户试图在变量名中使用空格,编译器会报错。比如,int my var; 这样的声明是错误的,因为中间有空格。 接下来,用户可能误解了某些代码中的空格使用。例如,在宏定义中,有时候会用反斜杠来换行,或者在字符串中使用空格,但这与标识符无关。另外,预处理指令中的宏替换可能会涉及到空格,但那是另一个话题。 另外,可能用户看到类似结构体初始化时使用点号加空格的方式,比如 struct.member,但这中间的间隔是结构体成员运算符,不是标识符的一部分。或者是函数调用时参数之间的空格分隔,但参数名本身不能有空格。 为了澄清问题,我需要解释C语言标识符的基本规则,并举例说明哪些情况下空格会导致错误。同时,可能需要提供正确的标识符命名示例,以及如何处理包含多个单词的变量名,比如使用下划线或驼峰命名法。 最后,相关问题应该围绕标识符规则、常见错误以及命名约定展开,帮助用户巩固这方面的知识。</think><< 在C语言中,标识符(变量名、函数名等)的命名规则不允许包含空格。标识符必须遵循以下规则: 1. 只能包含字母(a-z, A-Z)、数字(0-9)和下划线(_) 2. 不能以数字开头 3. 不能与关键字重复 4. 区分大小写 错误示例: ```c int my variable; // 错误:标识符包含空格 int 2var; // 错误:以数字开头 int float; // 错误:使用关键字 ``` 正确用法: ```c int my_variable; // 使用下划线连接 int myVariable; // 驼峰命名法 int var2; // 数字不在开头 ``` 当编译器遇到包含空格的标识符时,会报语法错误: error: expected identifier or '(' before ' ' token 若需要表达多单词标识符,推荐使用: 1. 下划线连接:student_count 2. 驼峰命名法:studentCount 3. 全大写常量:MAX_SIZE ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值