Advertisement
Guest User

C Code

a guest
Aug 30th, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.16 KB | None | 0 0
  1. #include<stdio.h>
  2. #define MAX_LINE 1000
  3. #define MAX_WORD 50
  4.  
  5. int getline(char stor[], int max);
  6. int compare(char stor[], char word[], int stor_lenght, int word_lenght);
  7.  
  8. int main()
  9. {
  10.     char stor[MAX_LINE], word[MAX_WORD];
  11.     int c, d;
  12.     printf("Enter The Word You Want To Search    : ");
  13.     d = getline(word, MAX_WORD);
  14.     printf("Enter The Text You Want To Search On : ");
  15.  
  16.     while((c = getline(stor, MAX_LINE)) != EOF)
  17.     {
  18.         if(compare(stor,word, c, d))
  19.         {
  20.         printf("\nFound %s\n", word);
  21.         return 0;
  22.         }
  23.     }
  24.  
  25.     printf("\nThe Word Was Not Present");
  26. }
  27.  
  28. int getline(char stor[], int max)
  29. {
  30.     int c, d;
  31.  
  32.     for(c = 0; (c < max - 1) && ((d = getchar()) != EOF) && (d != '\n'); c++) stor[c] = d;
  33.  
  34.     stor[c] = '\0';
  35.  
  36.     if(d == EOF) return d;
  37.  
  38.     return c;
  39. }
  40.  
  41. int compare(char stor[], char word[], int l1, int l2)
  42. {
  43.     int i, j;
  44.  
  45.     for(i = 0; i <= (l1 - l2); i++)
  46.     {
  47.         for(j = 0; j < l2; j++, i++)
  48.         {
  49.         if(!(stor[i] == word[j])) break;
  50.         }
  51.         if(j == l2) return 1;
  52.         else
  53.         {
  54.         i = i - j;
  55.         }
  56.     }
  57.  
  58.     return 0;
  59. }
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement