/*This program shows how to copy a string into an array*/ #include #include main(){ char MyArray[20]; strcpy(MyArray, "This is a String\n"); printf("%s", MyArray); return(0); }