About 6,850,000 results
Open links in new tab
  1. C Characters - W3Schools

    The char data type is used to store a single character. The character must be surrounded by single quotes, like 'A' or 'c', and we use the %c format specifier to print it:

  2. 5.4: Character Data Type - Engineering LibreTexts

    The character data type basically represents individual or single characters. Characters comprise a variety of symbols such as the alphabet (both upper and lower case) the numeral digits (0 to …

  3. Character Data Types - Visual Basic | Microsoft Learn

    Sep 15, 2021 · Visual Basic provides character data types to deal with printable and displayable characters. While they both deal with Unicode characters, Char holds a single character …

  4. What is a Character (CHAR)? - GeeksforGeeks

    Jul 23, 2025 · In many programming languages, declaring a char variable is straightforward. Here’s an example in C: Text Processing: Characters form the basis of strings, which are used …

  5. C Character Type

    In this tutorial, you will learn what C character type is and how to declare, use and display a character variable in C.

  6. Char Data Type in C – Memory Size, ASCII Values & Usage Explained

    Jun 28, 2025 · What Is the char Data Type in C? The char data type in C is used to store a single character. Internally, characters are stored as integer values using the ASCII (American …

  7. Demystifying the C `char` Data Type - CodeRivers

    In the world of C programming, the `char` data type is one of the most fundamental and versatile elements. It is used to represent characters, which are the building blocks of text in programming.

  8. The char Data Type - Emory University

    Has a base set of 128 characters, including all of the English letters (upper and lower case), digits 0 - 9, some common symbols, and several unprintable characters like tab, return, backspace, …

  9. C++ Character (char) Data Type - Online Tutorials Library

    The character (char) data type in C++ stands for alphanumeric values, which can be a wide range of characters. These may include alphabets like 'a', 'b', and 'c', numeric values like '1', '2', and …

  10. C++ Char Data Types - GeeksforGeeks

    Oct 11, 2025 · A Char datatype is a datatype that is used to store a single character. It is always enclosed within a single quote (' ').