repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduces jpeg-recovery source-code
[lcapit-junk-code.git]
/
printf.c
blob
e051252609c0287908d6d03a71fe2f8ddef41695
1
#include <stdio.h>
2
3
int
main
(
void
)
4
{
5
char
buf
[] =
"capitulino"
;
6
7
/* %.*s means 'size' specified in the next argument */
8
printf
(
"%.*s
\n
"
,
3
,
buf
);
9
return
0
;
10
}