copy a string without using strcpy in python code example
Example: c copy 2 strings\
#include <string.h>
#include <stdio.h>
int main()
{
char str[9]="A string";
char copy[9];
strcpy(copy,str);
printf("Copied String : %s",copy);
return 0;
}