C++ Program to Copy One String to Another

In this article, you will learn how to copy one string to another in C++ and get the code for it. The program is created using the following approaches:

Copy a string without using the strcpy() function in C++

This program copies the string (entered by the user at run-time) without using any library function like strcpy(). Let's have a look at the program first. Its explanation is given later on.

The question is, "Write a program in C++ that copies one string to another." Here is its answer:

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
    char strOrig[100], strCopy[100], i=0;
    cout<<"Enter the string: ";
    gets(strOrig);
    while(strOrig[i]!='\0')
    {
        strCopy[i] = strOrig[i];
        i++;
    }
    strCopy[i] = '\0';
    cout<<"\nEntered String: "<<strOrig;
    cout<<"\nCopied String: "<<strCopy;
    cout<<endl;
    return 0;
}

This program was built and runs under the Code::Blocks IDE. Here is its sample run:

C++ program copy string

Now enter the string, say "codescracker," and press the ENTER key to copy it to another string. Here is the final snapshot of its sample run:

copy one string to another c++

The dry run of the above program with user input of "codescracker" goes like this:

Copying strings in C++ using a pointer

This program copies the string using a pointer. The question is: write a program in C++ to copy the content of one string to another using a pointer. Here is its answer:

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
    char strOrig[100], strCopy[100];
    char *origPtr, *copPtr;
    cout<<"Enter the string: ";
    gets(strOrig);
    origPtr = &strOrig[0];
    copPtr = &strCopy[0];
    while(*origPtr)
    {
        *copPtr = *origPtr;
        origPtr++;
        copPtr++;
    }
    *copPtr = '\0';
    cout<<"\nEntered String: "<<strOrig;
    cout<<"\nCopied String: "<<strCopy;
    cout<<endl;
    return 0;
}

Here is its sample run with user input: Hello codescracker

copy string c++

The statement,

origPtr = &strOrig[0];

initializes the strOrig[] variable's initial address. That is its 0th index's address. And the statement,

copPtr = &strCopy[0];

also sets the address of strCopy[] to the 0th.

Note: If a pointer-type variable holds the address of any variable that contains some values, then anything that happens with the variable (pointer) makes changes to the original. because it holds its address, not value. So any operation performed through a pointer-type variable directly effects the value at that address.

The * is called as the value at operator. And & is called as the address of operator.

The statement, origPtr++;, means that origPtr now holds the next index's address.

So, using the pointer, all of the characters from the original string are copied (one by one) to strCopy[].

Copy a string in C++ using a user-defined function

This program also copies one string to another, but using a user-defined function named cpystr().

#include<iostream>
#include<stdio.h>
using namespace std;
void cpystr(char *, char *);
int main()
{
    char strOrig[100], strCopy[100];
    cout<<"Enter the string: ";
    gets(strOrig);
    cpystr(strOrig, strCopy);
    cout<<"\nEntered String: "<<strOrig;
    cout<<"\nCopied String: "<<strCopy;
    cout<<endl;
    return 0;
}
void cpystr(char *origPtr, char *copPtr)
{
    while(*origPtr)
    {
        *copPtr = *origPtr;
        origPtr++;
        copPtr++;
    }
    *copPtr = '\0';
}

This program produces the same output as the previous program.

Copy a string in C++ using the strcpy() function

This is the last program that uses a library function of C++ named strcpy() to copy a string. It takes two strings as its argument. The second argument's value is copied to the first.

#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
int main()
{
    char strOrig[100], strCopy[100];
    cout<<"Enter the string: ";
    gets(strOrig);
    strcpy(strCopy, strOrig);
    cout<<"\nEntered String: "<<strOrig;
    cout<<"\nCopied String: "<<strCopy;
    cout<<endl;
    return 0;
}

The same program in different languages

C++ Quiz


« Previous Program Next Program »


Liked this post? Share it!