Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #define MAX_LINE 1000
- #define MAX_WORD 50
- int getline(char stor[], int max);
- int compare(char stor[], char word[], int stor_lenght, int word_lenght);
- int main()
- {
- char stor[MAX_LINE], word[MAX_WORD];
- int c, d;
- printf("Enter The Word You Want To Search : ");
- d = getline(word, MAX_WORD);
- printf("Enter The Text You Want To Search On : ");
- while((c = getline(stor, MAX_LINE)) != EOF)
- {
- if(compare(stor,word, c, d))
- {
- printf("\nFound %s\n", word);
- return 0;
- }
- }
- printf("\nThe Word Was Not Present");
- }
- int getline(char stor[], int max)
- {
- int c, d;
- for(c = 0; (c < max - 1) && ((d = getchar()) != EOF) && (d != '\n'); c++) stor[c] = d;
- stor[c] = '\0';
- if(d == EOF) return d;
- return c;
- }
- int compare(char stor[], char word[], int l1, int l2)
- {
- int i, j;
- for(i = 0; i <= (l1 - l2); i++)
- {
- for(j = 0; j < l2; j++, i++)
- {
- if(!(stor[i] == word[j])) break;
- }
- if(j == l2) return 1;
- else
- {
- i = i - j;
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement