This is the minimum value for unsigned long data type.
Select one:
a. -9,223,372,036,854,775,807
b. 0
c. -9,223,372,036,854,775,808
d. -9,223,372,036,854,775,806
Answers
ᗅℕՏᗯℰℛ ⤵️⤵️⤵️⤵️
C-9,223,372,036,854,775,808
Answer:
-9223372036854775808
Explanation:
Numeral Types
The information about common integer types, including their storage capacities and value ranges, is shown in the table below.
size kind of storage
Value gamma
char
1 byte, either 0 to 255 or -128 to 127, unsigned char
1 byte, signed char, 0 to 255
1 byte, between -128 and 127 int, 2 or 4 bytes, between -32,768 and 32,767, or -2,147,483,648 and 2,147,483,647 int, respectively
0 to 4,294,967,295 or 2 or 4 bytes, 0 to 65,535, short
8 bytes or (4 bytes for 32 bit OS) -9223372036854775808 to 9223372036854775807 or 2 bytes -32,768 to 32,767 unsigned short 2 bytes 0 to 65,535 long
8-byte unsigned long, 0 to 18446744073709551615
Use the sizeof function to determine a type's or a variable's precise size on a specific platform.
See more:
https://brainly.in/question/54883892
#SPJ3