Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started