将开发过程中较好的代码备份一次,如下的代码段是关于C语言基础:格式化输出带符号的数字的代码,应该对各朋友有较大用处。
#include <stdio.h>
int main ()
{
int int_value = 5;
printf("Left justifed with sign %-+3dn",
int_value);
return 1;
}
gcc编译运行输出结果
Left justifed with sign +5