Print The Character by condition in C

#include <stdio.h>

int main( )
{
 char psz1[]  ="this is a test";
 
 printf("%.2s",psz1); 
}