填空题

以下程序的功能是:将值为3位正整数的变量X中的数值按照个位、十位、百位的顺序拆分并输出。请填空。 #include<stdio.h> main() { int x=256;  printf("%d-%d-%d\n", ______, x/10%10, x/100); }

【参考答案】

x%10