if we want to insert the elements of a string into a array like
char a[20]=”hello”;
then it will show a error…
because a (array name) is a constant pointer..whose address can not be changed…
and here we try to assign a new address of ‘h’ to the array name..
so we have to use strcpy(built in func) to insert the elements of string in a array….