Computer Science, asked by spichhoredot123, 1 year ago

what is string ..how copy string..?cs​

Answers

Answered by smartsarancomfortrub
3

Answer:

C++ Program to Copy Strings. C++ProgrammingServer Side Programming. A string is a one dimensional character array that is terminated by a null character. The value of a string can be copied into another string. This can either be done using strcpy() function which is a standard library function or without it.

Explanation:

Answered by Anonymous
1

Answer:

Copy(String) Method is used to create a new instance of String with the same value as a specified String. In other words, this method is used to copy the data of one string into a new string. The new string contains same data like an original string but represents a different object reference.Jan 2,

Similar questions