strncpy: copies up to count characters from *str2 to *str1
//Declaration: char *strncpy(char *str1, const char *str2, size_t count);
//Return: returns a pointer to str1.
#include<stdio.h>
#include<string.h>
int main(void){
char str1[128], str2[80];
gets(str1);
strncpy(str2, str1, 79);
printf("%s",str2);
}
/*
2
2*/
Related examples in the same category