Top "Toupper" questions

In C / C++ toupper function converts a given character to uppercase according to the character conversion rules defined by the currently installed C locale.

toupper tolower

How to use topper and tolower in the C language? I've tried to run the program that I've made, it …

c tolower toupper
Capitalize the first letter, lower case the rest

I am asking a user to enter their name and I want to automatically format the name so that, no …

c++ lowercase capitalize tolower toupper
How to convert a string (char *) to upper or lower case in C

I have a struct: typedef struct entry { char *surname; int house_no; char *postcode; } BEntry; and a function to convert …

c pointers char tolower toupper
Assembly: lowercase to UPPERCASE

I need to transform "h4ppy c0d1ng" into "H4PPY C0D1NG". I am a beginner in …

assembly uppercase i386 toupper
Force a stringBuilder to an upper case

I was wondering if there is anyway to use something like the toUpperCase for StringBuilder? Below is my code, I …

java stringbuilder toupper
Y/N or y/n in loop

I have trouble implementing the Y/N or y/n in the loop. I've designed it in a way that …

c# .net if-statement string-comparison toupper
C++ toUpper Implementation

I made an implementation of toUpper(). It doesn't work 100%. Code : char* toUpper(char* string) { char* sv = string; while(*sv++ != '\0…

c++ implementation toupper
toupper returns integer rather than char

for the following function void display() { for (int i = 0; i < 8; i++) { for (int j = 0; j < 8; j++) { if (board[…

c++ toupper