Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

to lowercase c++

#include <iostream>
#include <cctype>
using namespace std;

int main() {

  // convert 'A' to lowercase
  char ch = tolower('A');

  cout << ch;

  return 0;
}

// Output: a
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #lowercase
ADD COMMENT
Topic
Name
5+8 =