Full Form of CHAR

Full formTechnology
CHARstands for

Character

What is CHAR?

CHAR, short for Character, is a fundamental data type used in programming languages such as C, C++, Java, Python, and SQL to store a single character value, including letters, digits, punctuation marks, and special symbols. In most systems, it occupies one byte of memory and is mapped to ASCII or Unicode values for representation. In India, CHAR is an essential topic taught in computer science and information technology courses across engineering colleges, polytechnics, BCA and MCA programs, and professional certifications. Students preparing for competitive exams like GATE Computer Science, UGC NET, NIELIT O and A level, SSC, and various state technical recruitment tests frequently answer questions about character data types, their memory allocation, ASCII values, and the difference between CHAR and VARCHAR. This data type forms the building block for string manipulation, file handling, and database design, making it critical knowledge for software developers working in India's expanding IT and software services industry.

CHAR का फुल फॉर्म

वर्ण (कैरेक्टर)

Example

While designing the student database schema, the developer defined the gender column as CHAR(1) to store a single character value such as M or F.

CHAR — frequently asked questions

What is the full form of CHAR in programming?
CHAR stands for Character, a data type used in C, C++, Java, SQL, and other languages to store a single character such as a letter, digit, or symbol.
What is the difference between CHAR and VARCHAR in SQL?
CHAR is a fixed-length data type that always uses the same amount of storage regardless of the value, while VARCHAR is variable-length and only uses as much storage as the actual data requires.
How many bytes does a CHAR data type occupy in C language?
In C and C++, the CHAR data type typically occupies 1 byte (8 bits) of memory and stores values ranging from -128 to 127 or 0 to 255 depending on whether it is signed or unsigned.
Browse all Technology full forms →