#include #include int main() { char str[9]="A string"; char copy[9]; strcpy(copy,str); printf("Copied String : %s",copy); return 0; }