Question
C programming. How to find only lowercase letters The program needs to read a paragraph. Store only alphabetic characters(no numbers, punctuation, or spaces). Which I
C programming. How to find only lowercase letters
The program needs to read a paragraph. Store only alphabetic characters(no numbers, punctuation, or spaces). Which I think I got so far.
But then I need to make a separate array that stores ONLY lowercase letters.
Also, how do I convert the characters in the array into integers?
#include #include #include
#define MAX 10000
int main() { FILE *inputFile = fopen("sample.txt", "r"); char ch[10000];
while ((ch[MAX] = fgetc(inputFile)) != EOF) {
if (isalpha(ch[MAX])) { printf("%c", ch[10000]); }
}
fclose(inputFile);
return 0;
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started