C++ ofrece varias bibliotecas de plantillas estándar para usar. Una de ellas es la función memchr() que buscará la primera aparición de un carácter en un número específico de caracteres.
Modelo
const void* memchr( const void* ptr, int ch, std::size_t count ); Parameters : ptr : Pointer to the object to be searched for. ch : Character to search for. count : Number of character to be searched for. Return value: If the character is found, the memchr() function returns a pointer to the location of the character, otherwise returns null pointer.
// CPP program to illustrate memchr() #include <cstring> #include <iostream> using namespace std; int main() { char sr[] = "This is a sample"; char ch = 's'; int count = 13; if (memchr(sr, ch, count)) cout << ch << " is present in first " << count << " characters of \"" << sr << "\""; else cout << ch << " is not present in first " << count << " characters of \"" << sr << "\""; return 0; }
Producción:
s is present in first 13 characters of "This is a sample"
Ejemplo:
// CPP program to illustrate memchr() #include <iostream> #include <cstring> int main() { char arr[] = { 'b', 'a', 'd', 'e', 'f', 'A', 'g' }; char* pc = (char*)std::memchr(arr, 'g', sizeof arr); if (pc != NULL) std::cout << "search character found\n"; else std::cout << "search character not found\n"; }
Producción:
search character found
Este artículo es una contribución de Pranav . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA