[Solved] Can someone help me to do this exercise [closed]
Used this code to obtain that output #include <stdio.h> #include <string.h> int main(void) { char text[1024]; int biggest = 0, newBiggest = 0, stopCondition = 0, phrase = 0; puts(“Enter text, end with #”); do { scanf(” %[^\n]s”, text); for(int i = 0; i < strlen(text); i++) { if (text[i] == ‘#’) { stopCondition = … Read more