1char *str = "Hello World!";
2char copy[64]; // or 'char *copy = malloc(strlen(str) + 1);'
3strcpy(copy, str);
1#include <string.h>
2#include <stdio.h>
3int main()
4{
5 char str[9]="A string";
6 char copy[9];
7 strcpy(copy,str);
8 printf("Copied String : %s",copy);
9 return 0;
10}