home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tyc
/
list17_3.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-16
|
545b
|
28 lines
/* Using the strncpy() function. */
#include <stdio.h>
#include <string.h>
char dest[] = "..........................";
char source[] = "abcdefghijklmnopqrstuvwxyz";
main()
{
size_t n;
while (1)
{
puts("Enter the number of characters to copy (1-26)");
scanf("%d", &n);
if (n > 0 && n < 27)
break;
}
printf("\nBefore strncpy destination = %s", dest);
strncpy(dest, source, n);
printf("\nAfter strncpy destination = %s", dest);
}