Convert char array to upper case : char array string « String « C++






Convert char array to upper case

   
#include <iostream>
#include <string.h>
using namespace std;
struct Msg 
{
  char message[256];
  void show_message(void) { cout << message; }
};

struct UpperMsg 
{
   char message[256];
   void show_message(void) { cout << strupr(message); }
};


int main(void)
{
   Msg book = { "B" };
   UpperMsg book_upr = { "c" };

   book.show_message();
   book_upr.show_message();
}
  
    
    
  








Related examples in the same category

1.Demonstrate the basic null-terminated string functions.
2.Operator pointer
3.Count spaces, punctuation, digits, and letters.
4.Using strcpy() to assign value from one char array to another char array
5.Using strncpy() to assign one char array to another char array
6.Using strcpy and string terminator
7.Using strncpy() and string terminator
8.Get the string length
9.Using strcat() and strncat().
10.Using atoi() function
11.Filling an Array
12.Use strlen() to get the length of a char array buffer