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