strcopy() is a function used to copy strings? State Whether True or False
Answers
Answered by
29
true yes ha bilkul kyo nahi
Answered by
20
"Strcopy()" is a function used to copy strings. The statement is True
Explanation:
The strcpy() is a library function in C which copy a string into another string.
Syntax is: char* strcpy (char* destination, const char* source);
This method has the following parameters:
- Destination: "Pointer" to the destination string where the value to be copied.
- Source: string which required be copied.
- Return Value: The "strcpy() function" returns a "pointer" to the "destination" string, once it copies the source string value into the destination string.
Similar questions