Introduces jpeg-recovery source-code
[lcapit-junk-code.git] / printf.c
blobe051252609c0287908d6d03a71fe2f8ddef41695
1 #include <stdio.h>
3 int main(void)
5 char buf[] = "capitulino";
7 /* %.*s means 'size' specified in the next argument */
8 printf("%.*s\n", 3, buf);
9 return 0;