printf - Print a String in C

#include <stdio.h>

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