C++ Program to Copy One String to Another1 min read

We will write a C++ Program to Copy Strings. Before that, you may go through the following topics in C++.

There are various ways to copy strings in C++. in this tutorial we will look at the following to copy strings.

  1. Using library function, strcpy()
  2. Without the use of strcpy() function

C++ Program to Copy Strings

The program takes user input for the string and then copy that string to another string in various ways shown below.

1. C++ Program to Copy Strings Using strcpy() Function

The strcpy() function takes two arguments, first where it should be copied and second what should be copied and returns the copied value.

It is defined in string.h header file that needed to be included at the beginning of the program as shown below.

Output:

Enter the string: simple2code
Copied String (str2): simple2code


2. C++ Program to Copy Strings without using strcpy() Function

Here we have used for loop instead of the library function. Also, you can perform the same operation using a while loop too.

Output:

Enter the string: John
Copied String (str2): John


MORE

C Program to search an element in an array using Pointers

A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array …

C Program to find the sum of the digits of a number using recursion function

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation: Function Definition: sumDigits(int n) This function calculates …

C program to find factorial of a numberĀ using Ternary operator with Recursion

Recursion refers to the function calling itself directly or in a cycle. Before we begin, you should have the knowledge of following in C Programming: …

C Program to Add Two Numbers Using Call by Reference

The program takes the two numbers from the user and passes the reference to the function where the sum is calculated. You may go through …

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …