C语言中常用的字符常量符号有以下几种:
- 单引号(' '):用于表示单个字符常量,例如 'a'、'1'、'+' 等。
- 双引号(" "):用于表示字符串常量,例如 "hello"、"world" 等。
- 反斜杠(\):用于转义特殊字符,例如 \n、\t、\ 等。
- 百分号(%):用于格式化输出,例如 %d、%f、%s 等。
这些符号通常用于字符常量和字符串常量的表示、转义以及格式化输出。以下是使用字符常量符号的示例代码:
char ch = 'a'; char str[] = "hello"; printf("ch = %c\n", ch); // 输出:ch = a printf("str = %s\n", str); // 输出:str = hello printf("Hello\tWorld\n"); // 输出:Hello World printf("3 + 4 = %d\n", 3 + 4); // 输出:3 + 4 = 7
在上面的示例中,我们使用了单引号(' ')表示单个字符常量、双引号(" ")表示字符串常量、反斜杠(\)转义特殊字符以及百分号(%)进行格式化输出。需要注意的是,在使用字符常量符号时,需要注意转义符号的使用方法和格式化输出的占位符。
评论