C++ Program to Implement strncpy() Function
#include<iostream>
using namespace std;
int main ()
{
char str[50], cpy[50];
int n;
cout << "Enter a string : ";
gets(str);
cout << "Enter number of characters to be copied : ";
cin >> n;
strncpy(cpy, str, n);
cout << "Copied string : " << cpy;
return 0;
}
Output:
Enter a string : Hello
Enter number of strings to be copied : 4
Copied string : Hell
