strcpy() is a standard library function in C++ and is used to copy one string to another. In C++ it is present in the <string.h> and <cstring> header files.
Syntax:
char* strcpy(char* dest, const char* src);
Parameters: This method accepts the following parameters:
- dest: Pointer to the destination array where the content is to be copied.
- src: string which will be copied.
Return Value: After copying the source string to the destination string, the strcpy() function returns a pointer to the destination string.
Example:
C++
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str1[] = "Hello Geeks!" ;
char str2[] = "GeeksforGeeks" ;
char str3[40];
char str4[40];
char str5[] = "GfG" ;
strcpy (str2, str1);
strcpy (str3, "Copy successful" );
strcpy (str4, str5);
cout << "str1: " << str1 << "\nstr2: " << str2
<< "\nstr3: " << str3 << "\nstr4: " << str4;
return 0;
}
|
Output
str1: Hello Geeks!
str2: Hello Geeks!
str3: Copy successful
str4: GfG
Time Complexity: O(n)
Auxiliary Space: O(1)
Important Points:
- This function copies the entire string to the destination string. It doesn’t append the source string to the destination string. In other words, we can say that it replaces the content of the destination string with the content of the source string.
- It does not affect the source string. The source string remains the same after copying.
- This function only works with C style strings and not C++ style strings i.e. it only works with strings of type char str[]; and not string s1; which are created using standard string data type available in C++ and not C.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
20 Jan, 2023
Like Article
Save Article