Mega Code Archive

 
Categories / C / Stdio H
 

Using printf arguments

#include <stdio.h> int main( ) {  char   psz1[]   =   "this is a test",         psz2[]   =   "string text.";      printf("%*.*s",19,6,psz1);  }