void main()
astring = 'abc'; // will NOT compile
We cannot copy a string as
follows: bstring = astring;
where strcpy and strncpy are
strcpy(bstring, astring); // copies string including /0
strncpy(dest, source, stringlength);
strcpy(bstring, astring,9); // If bstring is of length 10
bstring[9] = '/0'; may be explicitly added.