如何在C的printf中转义%(百分比)符号?如何在使用printf在C区?printf("hello\%"); /* not like this */
3 回答
函数式编程
TA贡献1807条经验 获得超9个赞
%%
printf("hello%%");
char a[5];strcpy(a, "%%");printf("This is a's value: %s\n", a);
This is a's value: %%
眼眸繁星
TA贡献1873条经验 获得超9个赞
char c[100];char *c2;...printf(c); /* OR */printf(c2);
printf("%s", c)
- 3 回答
- 0 关注
- 1696 浏览
添加回答
举报
0/150
提交
取消