?C???,????string.h????????????????
- ??strncpy??:
#include#include int main() { char source[] = "Hello, World!"; char destination[20]; int n = 5; // ?????? strncpy(destination, source, n); destination[n] = '\0'; printf("???????:%s\n", destination); return 0; }
- ??sscanf??:
#includeint main() { char source[] = "Hello, World!"; char destination[20]; sscanf(source, " s", destination); printf("???????:%s\n", destination); return 0; }
- ??strtok??:
#include#include int main() { char source[] = "Hello, World!"; char *token; token = strtok(source, " "); // ??????? while (token != NULL) { printf("???????:%s\n", token); token = strtok(NULL, " "); // ?????????? } return 0; }
????????????????,????????????????????