Mega Code Archive

 
Categories / C / String H
 

Strncpy

//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*/