Вопрос

For example having string:

Hello World!

How to make strcopy function working from position 6 and copy only World! to another buffer ?

Это было полезно?

Решение

char source[] = "Hello World!";
char destination[7]; // 7 = strlen("World!") + 1

strcpy(destination, source + 6);
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top