43286

43286



Strpbrk

■    char *strpbrk(const char *sl, const char *s2);

■    strpbrk seans a string, sl, for the first occurrence of any character appearing in s2

■    On success, strpbrk returns a pointer to the first occurrence of any of the characters in s2

■    If nonę of the s2 characters occur in sl, it returns NULL

#include <stdio.h>

#include <string.h> int main(void)

{

char*string1 = "abcdefghijklmnopqrstuvwxyz"; char *string2 = "onm"; char *ptr;

ptr = strpbrk(string1, string2); if (ptr)

printf("strpbrk found first character: %c\n", *ptr); else

printf("strpbrk didn't find character in set\n"); return 0;

} I* strpbrk found first character: m */



Wyszukiwarka

Podobne podstrony:
Image16 12. .Opisz deklarację: const char *const c; stały wskaźnik do stałej zmiennej typu char. dek
const char *error; void *module; simp1e_demo_function demo_function; /* Load dynamically loaded libr
Po const Litera! &operator=(const char *pch){ strncpy(m_rgch, pch, sizeof(m_rgch)-2); m_rg ch [s
Język C++ - praktyczne wskazówki Po class Napis { private: const int m_cchTest; int m_cch; char
Po class Napis{ private: const int m_cchTest; int m_cch; char *m_pch; void lnicjNapis(const cha
140 TIF char *m_pch; public: int operator==(const Napis& napis) const{ return(strcmp(m_pch, napi
Formatowane wejście int scanf(const char ♦format, ...); •    Funkcja czyta z wejścia

więcej podobnych podstron