Posts by Augusto Herrmann Cavalheiro • 1 point
1 post
-
-1
votes2
answers9247
viewsA: How to check if one string is contained in another in C?
#include<stdio.h> #include<string.h> void main(){ char S1[100], S2[100]; int i,j,c=0; printf("digite a string S1\n"); gets(S1); printf("digite a string…