NBA - Boston Celtics

Wednesday, 5 September 2012

Change case from lower to upper


#include<iostream.h>
#include<conio.h>
#include<ctype.h>
void main()
{
clrscr();
char ch,n;
cout<<"enter alphabet ";
cin>>ch;
n=toupper(ch);
cout<<n;
getch();
}

No comments:

Post a Comment