answersLogoWhite

0

What is short char?

User Avatar

Anonymous

15y ago
Updated: 8/18/2019

Either syntax error or the same thing as char.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is short char in c language?

There is no such thing as "short char" You either mean char or short int. a char is a variable declaration that holds one character, usually 8 bits long (1 byte) short int (or simply short) is a 16 bit (2 byte) integer


What is the types of data?

int, but can be assigned to a short, long or char as well


What is the data type of 5?

int, but can be assigned to a short, long or char as well


How do you pronounce czarny?

Czarny is pronounced as "char-nee". The "cz" in Polish is pronounced like "ch" in English, and the "a" is short and sounds like "ah".


Is char a identical to char a?

'char a' and 'char a' are identical.


How many bits are in a char short and long on the Motorola 68000 microprocessor?

8, 16, 32


What is the significance of declaring a constant unsigned integer?

What is the significance of declaring a constant unsigned integer?


What are tose primitive data types?

byte, short, int, long, char, float, double, boolean


What are 8 examples of data types?

byte short long int char float double boolean


What is meant by char?

In C and C++, a char is a primitive data type with length 1 byte. It is guaranteed to represent all integers in the closed range [0:127]. As such, it is guaranteed to represent all character codes used by the language itself, hence it is called a char (short for character).


How char data type is represented in the memory?

The char data type is a single 16-bit, unsigned Unicode character. It ranges from 0 to 65,535. They are not integral data type like int, short etc. i.e. the char data type can't hold the numeric values. The syntax of declaring a char type variable is shown as:char caps = 'c';


What is primitive variables?

variable declared with primitive datatype are called as primitive variable. ex: short s=12; char ch='a'; here in above case ch,s are declared with primitive datatype of short and char so it is called as primitive variables.. thanx, from rajesh adepu.