Posts by Iohara • 1 point
1 post
-
-1
votes1
answer41
viewsQ: How do I make a string larger than her fgets not move to the next fgets? (C)
Guys, I got these two string entries: printf("Entre com a string: "); fgets(str, sizeof(str), stdin); printf("\nEntre com o caracter a ser procurado: "); fgets(caracter, sizeof(caracter), stdin); It…