printf("%%d\\n"); 一般情况下的字符转义是用\但是%比较特殊,用%进行转义。
printf("%%d\\n");
#include int main(){printf("%%d");printf("\\n"); return 0;}希望能帮到你