“Compruebe si la cadena contiene un personaje en C” Código de respuesta

Compruebe si la cadena contiene un personaje en C

#include <stdio.h>
#include <string.h>

int main(void)
{
  char str[] = "Hi, I'm odd!";
  int exclamationCheck = 0;
  if(strchr(str, '!') != NULL)
  {
    exclamationCheck = 1;
  }
  printf("exclamationCheck = %d\n", exclamationCheck);
  return 0;
}
Oskari Lehtinen

Compruebe si la cadena contiene un personaje en C

#include <stdio.h>
#include <string.h>

int main(void)
{
  char str[] = "Hi, I'm odd!";
  int exclamationCheck = 0;
  if(strchr(str, '!') != NULL)
  {
    exclamationCheck = 1;
  }
  printf("exclamationCheck = %d\n", exclamationCheck);
  return 0;
}
Oskari Lehtinen

Compruebe si la cadena contiene un personaje en C

#include <stdio.h>
#include <string.h>

int main(void)
{
  char str[] = "Hi, I'm odd!";
  int exclamationCheck = 0;
  if(strchr(str, '!') != NULL)
  {
    exclamationCheck = 1;
  }
  printf("exclamationCheck = %d\n", exclamationCheck);
  return 0;
}
Oskari Lehtinen

Respuestas similares a “Compruebe si la cadena contiene un personaje en C”

Preguntas similares a “Compruebe si la cadena contiene un personaje en C”

Más respuestas relacionadas con “Compruebe si la cadena contiene un personaje en C” en C

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código