answersLogoWhite

0

Data-type (short for integer).

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

What defines a data type?

the type of data which we store in a variable.. example: int a=10; /*here a is variable (data) which is of type int and stores a value 10.*/


What is int in 'c' language?

data-type


What is data type and field name?

Data Type defines the type of data that will be stored. Example : int, byte, short etc


What is the abbrevations for int?

"int" is the abbreviation for an integer data type. In Java an int is specifically a 32-bit signed integer.


What is the difference between Variable and Data Type of Variable?

Let's look at an example. int a = 1; Here our variable is 'a' which is of type 'int'


What is the different type of data type in c classified it?

float,int,char


What are the valid type of data that the main can return in c language?

Type 'int'


Where string is primitive data type of string data type?

String is not primitive data. Only char,int,double,and boolean are!


What is the valid range of numbers for int type of data?

The valid range of numbers for int is 32768 to 32767.


In c language size of data type int?

printf ("sizeof (int) is %d bytes", (int)sizeof (int)); Most likely it will be 2 or 4.


What data or variable type is used for whole numbers?

int


What are the applications of void data types inc plus plus?

void data type is used in function declaration. It can be explained by examle void add(int,int); this will tell the compiler that no value is going to be returned by the function. int add(int,int); this indicates that an integer type value will be returned by the function