C - Data Types
C - Data Types
htm
C - Data Types
Data types in c refer to an extensive system used for declaring variables or functions of
different types. The type of a variable determines how much space it occupies in storage and
how the bit pattern stored is interpreted.
1 Basic Types
They are arithmetic types and are further classified into: (a) integer types and (b)
floating-point types.
2 Enumerated types
They are again arithmetic types and they are used to define variables that can
only assign certain discrete integer values throughout the program.
4
Derived types
They include (a) Pointer types, (b) Array types, (c) Structure types, (d) Union
types and (e) Function types.
The array types and structure types are referred collectively as the aggregate types. The type
of a function specifies the type of the function's return value. We will see the basic types in
the following section, where as other types will be covered in the upcoming chapters.
Integer Types
The following table provides the details of standard integer types with their storage sizes and
value ranges −
1 of 5 4/10/22, 16:59
C - Data Types https://www.tutorialspoint.com/cprogramming/c_data_types.htm
To get the exact size of a type or a variable on a particular platform, you can use the sizeof
operator. The expressions sizeof(type) yields the storage size of the object or type in bytes.
Given below is an example to get the size of various type on a machine using different
constant defined in limits.h header file −
Live Demo
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <float.h>
2 of 5 4/10/22, 16:59
C - Data Types https://www.tutorialspoint.com/cprogramming/c_data_types.htm
return 0;
}
When you compile and execute the above program, it produces the following result on Linux
−
CHAR_BIT : 8
CHAR_MAX : 127
CHAR_MIN : -128
INT_MAX : 2147483647
INT_MIN : -2147483648
LONG_MAX : 9223372036854775807
LONG_MIN : -9223372036854775808
SCHAR_MAX : 127
SCHAR_MIN : -128
SHRT_MAX : 32767
SHRT_MIN : -32768
UCHAR_MAX : 255
UINT_MAX : 4294967295
ULONG_MAX : 18446744073709551615
USHRT_MAX : 65535
Floating-Point Types
The following table provide the details of standard floating-point types with storage sizes and
value ranges and their precision −
The header file float.h defines macros that allow you to use these values and other details
about the binary representation of real numbers in your programs. The following example
prints the storage space taken by a float type and its range values −
Live Demo
#include <stdio.h>
3 of 5 4/10/22, 16:59
C - Data Types https://www.tutorialspoint.com/cprogramming/c_data_types.htm
#include <stdlib.h>
#include <limits.h>
#include <float.h>
return 0;
}
When you compile and execute the above program, it produces the following result on Linux
−
4 of 5 4/10/22, 16:59
C - Data Types https://www.tutorialspoint.com/cprogramming/c_data_types.htm
There are various functions in C which do not return any value or you can say
they return void. A function with no return value has the return type as void. For
example, void exit (int status);
There are various functions in C which do not accept any parameter. A function
with no parameter can accept a void. For example, int rand(void);
3 Pointers to void
A pointer of type void * represents the address of an object, but not its type. For
example, a memory allocation function void *malloc( size_t size ); returns a
pointer to void which can be casted to any data type.
5 of 5 4/10/22, 16:59