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