ממש פונקציה בשם strlen_without_h, בעלת ההצהרה unsigned int strlen_without_h(const char *str); הפונקציה מקבלת מחרוזת, ומדפיסה את מספר התווים בה שאינם האות 'h'. פתרון unsigned int strlen_without_h(const char *str) { unsigned int i; unsigned int len_without_h = 0; for(i = 0; str[i] != 0; ++i) if(str[i] != 'h') ++len_without_h; return len_without_h; }
ממש פונקציה בשם strlen_without_h, בעלת ההצהרה unsigned int strlen_without_h(const char *str); הפונקציה מקבלת מחרוזת, ומדפיסה את מספר התווים בה שאינם האות 'h'. פתרון unsigned int strlen_without_h(const char *str) { unsigned int i; unsigned int len_without_h = 0; for(i = 0; str[i] != 0; ++i) if(str[i] != 'h') ++len_without_h; return len_without_h; }