This project implements a string analysis algorithm in C that counts occurrences where a character is strictly greater than the one preceding it.
- Input: Reads a string (e.g.,
abcdezmf). - Comparison: Iterates through the array comparing pairs:
- Condition:
str[i+1] > str[i] - If true, increment
sum.
- Condition:
Based on Question 5:
Input: abcdezmf
Matches Found:
b>ac>bd>ce>dz>e(Comparisonm>zis False)
String ifadeyi giriniz: abcdezmf
--- Analiz Sonucu ---
Metin: abcdezmf
Kendisinden buyuk karakter sayisi: 5