关于c中的制表符用法问题
在一个程序中看到这样一个制表代码:#include <stdio.h>
main()
{
printf("%3s\t%-10s\t%-8s\t%-10s\t%-10s\t%-10s\n",
"No.","date","in_out","amount","kind","remain");
}
第四行中:%3s\t%-10s\t%-8s\t%-10s\t%-10s\t%-10s 不太懂
谁能解释下
输出 "NO." 应该是这样:printf("%s","No.")
加制表符后怎么是"%3s\t%-10s" 问什么要在 %3s\t% 与 10s 加个'-' 那个10是什么意思?
%3s\t%-10s\t%-8s\t%-10s\t%-10s\t%-10s 该怎么断句,不懂。
路过的大神求解释