“Verifique se a string contém um caractere em C” Respostas de código

Verifique se a string contém um caractere em 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

Verifique se a string contém um caractere em 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

Verifique se a string contém um caractere em 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

Respostas semelhantes a “Verifique se a string contém um caractere em C”

Perguntas semelhantes a “Verifique se a string contém um caractere em C”

Mais respostas relacionadas para “Verifique se a string contém um caractere em C” em C

Procure respostas de código populares por idioma

Procurar outros idiomas de código