Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <ctype.h>
- #include <string.h>
- void funkcija(char * niza, char * podniza) {
- int brojac = 0;
- for(int i = 0; i < strlen(niza); i++) {
- if(niza[i] == podniza[0]) {
- int ok = 1;
- for(int j = 0; j < strlen(podniza); j++) {
- printf("%c ", niza[i + j]);
- }
- printf("\n");
- for(int j = 0; j < strlen(podniza); j++) {
- printf("%c ", podniza[j]);
- }
- printf("\n");
- if(ok == 1) {
- brojac++;
- }
- }
- }
- printf("%d\n", brojac);
- }
- int main(int argc, const char * argv[]) {
- char niza[1000];
- char podniza[1000];
- fgets(niza, 500, stdin);
- fgets(podniza, 500, stdin);
- printf("%s\n", podniza);
- funkcija(niza, podniza);
- return 0;
- }
- /*
- Ovoj tekst e proben tekst
- tekst
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement