Advertisement



< Prev
Next >



C strncpy() function




The strncpy() is a string manipulation function defined in the cstring header file, which works on a string which is stored in a c-style char array and this function is used to copy the first n number of characters of a string to another string.




Signature of strcpy() function


char * strncpy ( char * destination, const char * source, size_t num )







Example of strncpy() function


In the upcoming code, we are calling strncpy() function, to copy the first 2 characters of one string named arr2 to another string named arr1.

//  Program to append n number of characters of first string at the end of another string. 

#include<iostream>
#include<cstring>

using namespace std;

int main()
{
char arr1[15] = "Keep Smiling";
char arr2[15] = "Always";

cout<< "The content of first string is : " << arr1 << "\n";
cout<< "The content of second string is : " << arr2 << "\n";

strncat(arr1,arr2,2); // only first two characters from arr2 will be appended to the end of arr1 

cout<< "The addition of two string is : " << arr1 << "\n";
cout<< "The content of second string : " << arr2;

return 0;
}


Output is -


The content of first string is : Keep Smiling
The content of second string is : Always
The addition of two string is : Keep SmilingAl
The content of second string : Always




Advertisement




  • Performing strncpy without using strncpy() function


  • Let's create a program copies the first n number of characters of one string to another string without using strncpy() function.


    // Program to copy n, number of characters of one string to another string without strncpy() function 
    
    
    #include<iostream>
    #include<cstring>
    
    using namespace std;
    
    int main()
    {
    char dest[20] = "Hello";
    char src[10] = "World";
    
    cout<< "The value in dest string : " << dest << "\n";
    cout<< "The second in src string : " << src << "\n";
    
    int len1 = strlen(dest);
    int len2 = strlen(src);
    
    cout<< "Length of characters in dest string : " << len1 <<"\n";
    
    int num; 
    cout<< "How many characters of the first string you to copy from str string : ";
    cin>>num;
    
    for(int i=0;i<num; i++)
    {
    	dest[i] = src[i];
    	len1 = len1 + 1 ;
    }
    dest[len1]='\0';
    
    cout<< "The new value in dest string : " << dest;
    
    return 0;
    }


    Output is :


    The value in dest string : Hello
    The second in src string : World
    Length of characters in dest string : 5
    How many characters of the first string you to copy from str string: 2
    The new value in dest string : Wollo





    Note: - The function strlen returns the total number of characters actually present in the char[] and not the total number of character it can hold.





    Please share this article -





    < Prev
    <Next >
    < C++ strncpy() function
    < C++ strcmp() function >



    Advertisement

    Please Subscribe

    Please subscribe to our social media channels for daily updates.


    Decodejava Facebook Page  DecodeJava Twitter Page Decodejava Google+ Page




    Advertisement



    Notifications



    Please check our latest addition

    C#, PYTHON and DJANGO


    Advertisement