#include #include int main() { char str1[] = "Small string."; char str2[15]; strcpy(str2, str1); puts(str1); return 0; }