Computer Science, asked by PragyaTbia, 1 year ago

What is a difference between “A” and ‘A’ in String Handling Functions?

Answers

Answered by Nanny55
0
strcpy() function is used to copy one string into another string. strcpy() function accepts two string (source and destination) as an argument and copy source string into destination string. It does not return any value. strcat() function is used to append (join) one string at the end of another string.
Similar questions