How to convert First Character in String to Uppercase in C - Step by Step Examples
How to convert First Character in String to Uppercase in C ?
Answer
To convert the first character of a string to uppercase in C, you can use the toupper
function from the ctype.h
library.
✐ Examples
1 Convert First Character to Uppercase
In this example,
- We include the necessary headers
stdio.h
for standard input/output functions andctype.h
for character handling functions. - We create a character array named
str
with a string value. - We check if the first character of the string is a lowercase letter using the
islower
function. - If the first character is lowercase, we convert it to uppercase using the
toupper
function. - Finally, we print the modified string to standard output.
C Program
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "hello world";
if (islower(str[0])) {
str[0] = toupper(str[0]);
}
printf("%s\n", str);
return 0;
}
Output
Hello world
2 Convert First Character of Each Word to Uppercase
In this example,
- We include the necessary headers
stdio.h
for standard input/output functions andctype.h
for character handling functions. - We create a character array named
str
with a string value that contains multiple words. - We initialize a variable
new_word
to track the beginning of a new word. - The outer loop iterates over each character in the string.
- The inner loop checks if the current character is the beginning of a new word (i.e., the first character or preceded by a space).
- If the character is a lowercase letter and it's the start of a new word, we convert it to uppercase using the
toupper
function. - We update the
new_word
flag after encountering a space. - Finally, we print the modified string to standard output.
C Program
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "hello world, how are you?";
int new_word = 1;
for (int i = 0; str[i] != '\0'; i++) {
if (new_word && islower(str[i])) {
str[i] = toupper(str[i]);
}
new_word = (str[i] == ' ');
}
printf("%s\n", str);
return 0;
}
Output
Hello World, How Are You?
Summary
In this tutorial, we learned How to convert First Character in String to Uppercase in C language with well detailed examples.
More C Strings Tutorials
- How to Create an Empty String in C ?
- How to get Length of String in C ?
- How to get Character at Specific Index in String in C ?
- How to get First Character in String in C ?
- How to get Last Character in String in C ?
- How to get First N Characters in String in C ?
- How to get Last N Characters in String in C ?
- How to get Substring after Specific Character in C ?
- How to get Substring before Specific Character in C ?
- How to get Substring between two Specific Characters in C ?
- How to get Substring from Specific Index to End in C ?
- How to Iterate over Characters in String in C ?
- How to Iterate over Words in String in C ?
- How to Check if String is Empty in C ?
- How to Check if String contains only Alphabets in C ?
- How to Check if String contains only Alphabets and Numbers in C ?
- How to Check if String contains only Numeric Digits in C ?
- How to Check if a String contains given Substring in C ?
- How to Check if String contains specific Character in C ?
- How to Check if String starts with Specific Prefix in C ?
- How to Check if String ends with Specific Suffix in C ?
- How to Append a String to another String in C ?
- How to Append a Character to beginning of a String in C ?
- How to Append a Character to end of a String in C ?
- How to Concatenate Two Strings in C ?
- How to Repeat a String N Times in C ?
- How to Insert Character at Specific Index in String in C ?
- How to Replace a Substring in String in C ?
- How to Replace Character at Specific Index in String in C ?
- How to Replace All Occurrences of a Substring in a String in C ?
- How to Replace a Substring in a String using Regular Expression in C ?
- How to Split a String in C ?
- How to Split a String by New Line in C ?
- How to Split a String by Comma in C ?
- How to Sort Characters in String in C ?
- How to convert String to Lowercase in C ?
- How to convert String to Uppercase in C ?
- How to Trim a String in C ?
- How to convert First Character in String to Uppercase in C ?
- How to Reverse a String in C ?
- How to Remove Character at specific Index in a String in C ?
- How to Remove First Character in a String in C ?
- How to Remove Last Character in a String in C ?
- How to Remove first N Characters in a String in C ?
- How to Remove last N Characters in a String in C ?
- How to Remove specific Substring in C ?
- How to Remove specific Character from a String in C ?
- How to Remove All Whitespace Characters from a String in C ?
- How to Remove Special Characters from a String in C ?
- How to keep only Alphabets in a String in C ?
- How to Convert Integer to String in C ?
- How to Convert String to Integer in C ?
- How to convert String to Float in C ?
- How to convert Float to String in C ?
- How to check if Two Strings are Equal in C ?
- How to check if Two Strings are Equal ignoring case in C ?
- How to Compare Two Strings in C ?
- How to find the Characters in the First String that are not Present in the Second String in C ?
- How to find the Index of Substring in C ?
- How to find the Index of Last Occurrence of Substring in C ?
- How to find the Indices of All Occurrences of Substring in C ?
- How to get all the possible Substrings of a String in C ?
- How to get all the possible K length Substrings in a String in C ?