Table of Contents Previous topic Next topic
C LIBRARY FUNCTIONS->Detailed Descriptions->strncat()
Summary
#include <string.h>
| char *strncat(char* string1, const char* string2, size_t n); | Append one string to another |
| string1 | String to be extended |
| string2 | String to be appended |
| n | Number of characters to be appended |