This website works better with JavaScript
首頁
探索
說明
登入
DragonOS-Community
/
relibc
镜像来自
https://github.com/DragonOS-Community/relibc
關註
2
讚好
0
複刻
0
Files
問題管理
0
Wiki
目錄樹:
d1a86c850e
分支列表
標籤列表
dragonos-relibc
master
patch-add-dragonos-port
patch-support-run-first-demo-on-dragonos
update-dsc
relibc
/
tests
/
stdio
/
printf_space_pad.c
printf_space_pad.c
68 B
文件歷史
原始文件
1
2
3
4
#
include
<stdio.h>
int
main
()
{
printf
(
"%s%*s\n"
,
"A"
,
3
,
"B"
);
}