请考虑以下代码:
#include <stdio.h> int main() { int i = 0; printf("hello%n%d\n", &i, i); }
为什么打印hello0而不打印hello5?
hello0
hello5
c printf string-formatting
c ×1
printf ×1
string-formatting ×1