如何打印格式字符,例如:%p
?反斜杠与引用(""
)没有任何关系。我在一个简单的玩具程序中试过它,我想它返回的值是垃圾:
我试图打印的是声明:
With the formatting character %p and '&'
答案 0 :(得分:4)
使用双倍百分比即%%
将为您打印单%
:
printf("With the formatting character %%p and '&'\n");
答案 1 :(得分:0)
int main(){
/* code */
printf("%s\n","With the formatting character %p and '&;");
}
应打印正确的字符串。