Using strcpy() to assign value from one char array to another char array : char array string « String « C++






Using strcpy() to assign value from one char array to another char array

  
#include <iostream>
#include <string.h>
using namespace std;

int main()
{
   char String1[] = "this is a test";
   char String2[80] = {'\0'};

   strcpy(String2,String1);

   cout << "String1: " << String1 << endl;
   cout << "String2: " << String2 << endl;
   return 0;
}
  
    
  








Related examples in the same category

1.Demonstrate the basic null-terminated string functions.
2.Operator pointer
3.Count spaces, punctuation, digits, and letters.
4.Convert char array to upper case
5.Using strncpy() to assign one char array to another char array
6.Using strcpy and string terminator
7.Using strncpy() and string terminator
8.Get the string length
9.Using strcat() and strncat().
10.Using atoi() function
11.Filling an Array
12.Use strlen() to get the length of a char array buffer