This website works better with JavaScript
Home
Explore
Help
Sign In
DragonOS-Community
/
relibc
mirror of
https://github.com/DragonOS-Community/relibc
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Tree:
367be58666
Branches
Tags
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
History
Raw
1
2
3
4
#
include
<stdio.h>
int
main
()
{
printf
(
"%s%*s\n"
,
"A"
,
3
,
"B"
);
}