Back To C++ String Manipulation Functions
//program to demonstrate strupr function in string.h to convert string into upper case #include
#include
#include
void main() { char str1[10],*str2; clrscr(); cout<<"\nenter string 1"; cin>>str1; str2=strupr(str1); cout<