“Funkcja substring w C” Kod odpowiedzi

C Substring

char subbuff[5];
memcpy( subbuff, &buff[10], 4 );
subbuff[4] = '\0';
Plimpton

C Substring

//where we want the word "test" and we know its position in the string
char *buff = "this is a test string";
printf("%.*s", 4, buff + 10);
Grotesque Gazelle

Odpowiedzi podobne do “Funkcja substring w C”

Pytania podobne do “Funkcja substring w C”

Więcej pokrewnych odpowiedzi na “Funkcja substring w C” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu