cpp string to upper code example

Example 1: uppercase capitalise character in string c++

str[i] = toupper(str[i]);

Example 2: convert all characters in string to uppercase c++

transform(str.begin(), str.end(), str.begin(), ::toupper);

Example 3: c++ convert lowercase to uppercase

/* toupper example */
#include <stdio.h>
#include <ctype.h>
int main ()
{
  int i=0;
  char str[]="Test String.\n";
  char c;
  while (str[i])
  {
    c=str[i];
    putchar (toupper(c));
    i++;
  }
  return 0;
}

Tags:

Cpp Example