Q:

Write C++ program to convert a string to upper case

belongs to collection: C++ language string programs

0

Write C++ program to convert a string to upper case

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.

#include <iostream>
#include <string.h>
using namespace std;
 
int main()
{
   char string[10];
 
   cout<<"Input a string to convert to upper case"<<endl;
   cin.getline(string, 10);
 
   cout<<"Characters in uppercase:"<< strupr(string);
   // strupr is use to convert lower case character to upper case
 
   return  0;
}

Result:

Input a string to convert to upper case

TechStudy

Characters in uppercase: TECHSTUDY

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write C++ program to change string to upper case w... >>
<< Write C++ program to convert a string to lower cas...