String C

#include 
#include 
int main(void)
{
  char str[5];
  strcpy(str, "this is a test");
  printf(str);
  return 0;
}