MS Rumi. Powered by Blogger.

Thursday 24 April 2014

Program To Print Small Letters

By Unknown  |  06:59 No comments

C++ Program To Print a To z

Write a program to print the small letters from (a → z) in c++.

// You can use same program for the Capital latter replace small 'a' with capital 'A'.
#include<iostream.h>
void main ()
{
char ch='a';
for(int i=1;i<=26;i++)
{
cout<<ch<<",";
ch++;
}

}

Author: Unknown

Hello, I am Author, thanks for visiting my blog. Bookmark this....

0 comments:

E-mail Newsletter

Sign up now to receive breaking news and to hear what's new with us.

Recent Articles

TOP