Using strncpy() and string terminator : char array string « String « C++






Using strncpy() and string terminator

  
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
   char stringOne[80];
   char stringTwo[10];
   char stringThree[80];

   stringOne[0]='\0';
   stringTwo[0]='\0';
   stringThree[0]='\0';

   cout << "String One: " << stringOne << endl;
   cout << "String Two: " << stringTwo << endl;
   cout << "String Three: " << stringThree << endl;

   cout << "Enter a long string: ";
   cin.getline(stringOne,80);
   strcpy(stringThree,stringOne);

   cout << "\nString One: " << stringOne << endl;
   cout << "String Two: " << stringTwo << endl;
   cout << "String Three: " << stringThree << endl;

   strncpy(stringTwo,stringOne,9);

   cout << "\nString One: " << stringOne << endl;
   cout << "String Two: " << stringTwo << endl;
   cout << "String Three: " << stringThree << endl;

   stringTwo[9]='\0';

   cout << "\nString One: " << stringOne << endl;
   cout << "String Two: " << stringTwo << endl;
   cout << "String Three: " << stringThree << endl;
   cout << "\nDone." << 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 strcpy() to assign value from one char array to another char array
6.Using strncpy() to assign one char array to another char array
7.Using strcpy 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