answersLogoWhite

0


Best Answer

i hate you Edlorna Mae bye forrever

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find an integer is 2 bytes?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does the reserved word Short mean in java?

A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.


How many bytes take to the integer in c language?

2


How many bytes take an integer variable in C under windows?

A plain integer variable in C under windows is 2 bytes in 16 bit windows, and 4 bytes in 32 bit windows.


How many bytes is an integer variable?

It depends on the context. Each database and computer language define an "integer". In the C language an integer is defined by the hardware. It can vary from 2 to 8 bytes or more.


How many bytes of memory does an integer occupy?

4 bytes


How many bytes is billion?

4 bytes are enough to represent any integer in a range of approximately -2 billion, to +2 billion.


How many bytes takes on integer in windows and Linux?

Usually four bytes.


Maximum value of an unsigned integer is how many bytes?

Type size of an unsigned integer is compiler specific. Most compilers will provide 4 bytes, but the size can range from 2 to 8, or (again) whatever the implementation provides. Note: 1. Maximum value: UINT_MAX (in limits.h) 2. Size in bytes: sizeof (unsigned)


How many bits are there in dint?

8 bits = 1byte 2 bytes = 1int dint (double integer) = 4bytes = 32bits


Find an integer such that the sum of twice the square of the integer and theinteger itself is 55?

find the sum of 2 and 2


What do you mean by long integer and double integer?

Different computer languages use different amounts of memory to store integers. For example, C++ uses a minimum of 4 bytes, Java a min of 8 bytes. A long integer is one which is requires more bytes than the standard amount. When the storage requirement gets to twice the standard amount, the number becomes a double integer.


How many length required for an integer?

You mean how many bytes? It is sizeof (int) -- usually 4, on archaic platforms 2 (TurboC).