Hi Sir
Write a C program to count and print the total number of:

upper case letters, i.e. ‘A’ to ‘Z’
lower case letters, i.e. ‘a’ to ‘z’

Recommended Answers

All 2 Replies

Hi, do it your damn self. We're not a homework service, but if you actually make an attempt, we'll be happy to help you along a little bit.

commented: This post made me laugh :) +2
commented: i did a LOLercopter too +1

Hello Tah.

please excuse Narue's brusqueness. her chainsaw needs oiling.

Now I have made for you a handy program to use in situations just like the one that you are looking for:

#include <stdio.h>

int main ()
{
    printf("hello world!\n");
    return 0;
}

please feel free to cut and paste into a file, rename it as your own, and turn it in!

simple as that.

of course, you can even add your own additional functionality to "spice it up", as they say out here in the industry.... but only if you feel sufficiently motivated. The program will certainly work as it is.

Cheers, and a wonderful day to you sir!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.