viewing paste Unknown #21434 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <stdio.h>
#include <string.h>
 
 
int main () {
 
        char s0[] = "string";
        char s1[] = "str";
 
        if (strstr(s0, s1))
                printf("I've find %s in %s\n", s0, s1);
 
 
        return 0;
}
 
 
Viewed 716 times, submitted by milk.