#include<stdio.h> void main() { char *a="your"; char *b="name"; printf("%s",strcpy(a,b)); }
char a[] ="your"; char b[] ="name"; etc...
Comment