answersLogoWhite

0

What means integer in c Language?

User Avatar

Anonymous

12y ago
Updated: 8/20/2019

An integer is known as an "int". It is defined to be at least able to hold values ranging from -32767 to 32767 (signed) or 0 to 65535 (unsigned). This is only the minimum range, however, and they are commonly larger. For 32-bit C programs, they will usually be in the range 2^32, and for 64-bit C programs, they may be in the 2^64 range, but this is compiler-dependent. A developer should only assume that an int is capable of holding a value with the specified minimum range, unless the code checks first to see what the actual ranges are.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What represents valid integer number in c language?

1500


How many bytes take to the integer in c language?

2


Meaning of signed integer in c language?

signed integer means that it has a sigh (+ or -). Using another words you say that signed variable can be positive as well as negative. unsigned variables can be only positive.


What is long components in the C programming language?

A 32 bit integer.


Why you use 'integer' before function in C language?

To specify the return-type of the function.


When you can use percent D in c language?

To define any integer type value.


How do you decide which integer type to use in c language?

By the range of values you wish to represent.


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.


Wrie a program to receive an integer and find its octal equivalant?

Use %o


What are the different types of integer constants in c language?

Well, uh, const unsigned int and const signed int..


How would you write a program that read an integer for display each of digit of integer in English?

Use an enum if you are using a c style language. Or a map data structure. Assign each integer an English value and then match it to what the user inputs.


What does int A mean in c language?

It is easy to tell with function printf:int unknown_value;...printf ("unknown value is %d\n", unknown_value);Note: the typical value-range for type integer is -32768..32767 (16 bits), or -2147483648..2147483647 (32 bits).