fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int testarString(char fonte[], char encontrar[]){
  5. int i = 0;
  6. while (i <= strlen(encontrar)){
  7. if (strchr(fonte, encontrar[i]) == 0)
  8. return 1;
  9. i++;
  10. }
  11. return 0;
  12. }
  13.  
  14. int main(){
  15. char v[] = "cdeuabf";
  16. char s[] = "abuc";
  17. if (testarString(v, s) == 0){
  18. printf("Os caracteres da string %s aparecem em %s!\n", s, v);
  19. } else {
  20. printf("Um determinado caractere da string %s nao foi encontrada em %s\n", s, v);
  21. }
  22. return EXIT_SUCCESS;
  23. }
  24.  
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
Os caracteres da string abuc aparecem em cdeuabf!