Which of the below is NOT a data type in C language:
Signed int
Big int
Short int
Long int
Answers
while all other are data type in C language
hope it helps u.
Answer:
The answer to the given question is:
Big int
Explanation:
The int type in C is a signed integer that can contain both positive and negative numbers. This is in contrast to an unsigned integer, which can only represent positive integers and can be used by declaring a variable called an unsigned int.
Attempting to assign a value to a signed integer type outside the range of representable values (INT MIN to INT MAX) results in undefined behavior.
In
C, integer values are stored in 2-byte (16-bit) memory using the short int data type.
A 16-bit signed integer of data type short int or signed short int can contain values between 32768 (-215) and 32767. (2 15-1). A 16-bit integer is represented as an unsigned short int data type that does not require a sign bit. Only positive values between 0 and 65535 can be stored. (2 16-1).
#SPJ2