“Vérifiez si la chaîne contient un caractère en c” Réponses codées

Vérifiez si la chaîne contient un caractère 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

Vérifiez si la chaîne contient un caractère 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

Vérifiez si la chaîne contient un caractère 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

Réponses similaires à “Vérifiez si la chaîne contient un caractère en c”

Questions similaires à “Vérifiez si la chaîne contient un caractère en c”

Plus de réponses similaires à “Vérifiez si la chaîne contient un caractère en c” dans C

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code