这是我的程序,我总是%在每个程序的输出结束时得到一个标志.例如,在以下程序的输出结束时,我得到:
name1 and name2: You will reach the top.%
Run Code Online (Sandbox Code Playgroud)
这是代码:
#include <stdio.h>
#define message_for(a, b) \
printf(#a " and " #b ": You will reach the top.'\0'")
int main() {
message_for(name1, name2);
return 0;
}
Run Code Online (Sandbox Code Playgroud) c ×1