Skip to main content

C Data Types


Declaration & Assignments

C Data Types
Data type in C programming is a set of values and is determined to act on those values. C provides various types of data-types which allow the programmer to select the appropriate type for the variable to set its value.

Data type in a programming language is the collection of data with values having fixed meaning as well as characteristics. Some of them are: integer, floating point, character etc. Usually programming languages specifies the range values for given data-type.
C Data Types are used to:
  • Identify the type of a variable when it declared.
  • Identify the type of the return value of a function.
  • Identify the type of a parameter expected by a function.
ANSI C provides three types of data types:
  1. Primary(Built-in) Data Types:
    voidintchardouble and float.
  2. Derived Data Types:
    ArrayReferences and Pointers.
  3. User Defined Data Types:
    StructureUnion and Enumeration.

Primary Data Types

Every C compiler supports five primary data types:
voidAs the name suggests it holds no value and is generally used for specifying the type of function or what it returns. If the function has void type, it means that the function will not return any value.
intUsed to denote an integer type.
charUsed to denote a character type.
float, doubleUsed to denote a floating point type.
int *, float *, char *Used to denote a pointer type.
Three more data types has been added in C99:
  • _Bool
  • _Complex
  • _Imaginary

Declaration of Primary Data Types with Variable Names

After taking suitable variable names, they need to be assigned with a data type. This is how the data types are used along with variables:
Example:
int    age;
char letter;
float height, width;

Derived Data Types

C supports three derived data types:
Data TypesDescription
ArraysArrays are sequences of data items having homogeneous values. They have adjacent memory locations to store values.
ReferencesFunction pointers allow referencing functions with a particular signature.
PointersThese are powerful C features which are used to access the memory and deal with their addresses.

User Defined Data Types

C allows the feature called type definition which allows programmers to define their own identifier hat would represent an existing data type. There are three such types:
Data TypesDescription
StructureIt is a package of variables of different types under a single name. This is done to handle data efficiently. “struct” keyword is used to define a structure.
UnionThese allow storing various data types in the same memory location. Programmers can define a union with different members but only a single member can contain a value at given time. It is used for
EnumEnumeration is a special data type that consists of integral constants and each of them is assigned with a specific name. “enum” keyword is used to define enumerated data type.

Data Types and Variable Declarations in C

Example:
#include <stdio.h>
int main()
{
int a = 4000; // positive integer data type
float b = 5.2324; // float data type
char c = 'Z'; // char data type
long d = 41657; // long positive integer data type
long e = -21556; // long -ve integer data type
int f = -185; // -ve integer data type
short g = 130; // short +ve integer data type
short h = -130; // short -ve integer data type
double i = 4.1234567890; // double float data type
float j = -3.55; // float data type
}
The storage representation and machine instructions differ from machine to machine. sizeof operator can use to get the exact size of a type or a variable on a particular platform.

Example:
#include <stdio.h>
#include <limits.h>
int main()
{
printf
("Storage size for int is: %d \n", sizeof(int));
printf
("Storage size for char is: %d \n", sizeof(char));
return 0;
}
Run 
Program Output:
c-data-types

Comments

For Programs Click Here

Popular posts from this blog

Syllabus

Syllabus  C Programming Tutorials C Tutorial C Introduction History of C Programming Language C Installation C Program Structure C Input and Output (I/O) C Format Specifiers Declaration & Assignments C Tokens C Identifiers C Keywords C Constants C Operators C Data Types C Variables C Preprocessors C Type Casting C Custom Header File Flow Control C Decision Making C if Statements C if-else Statements C Nested if-else Statements C else-if Statements C goto Statement C switch Statements C Loops C while loops C do while loops C for loops Functions C Functions C Function Arguments C Library Functions C Variable Scope Arrays & Strings C Arrays C Strings Pointers C Pointers C Dynamic Memory Allocation Structure & Union C Structures C Unions File I/O C File Handling C fopen C fclose C getc C putc C getw C putw C fprintf C fscanf C fgets C fputs C feof                                     ...

Syllabus

Python Tutorials Python Tutorial Python Overview Python Installation Basics of Python Programming Python Operators Python Keywords Python Numbers Python Strings Python Data Types Python Variables Python Lists Python Tuples Python Date and Time Python Decision Making Python Loops Python File Handling Python Dictionaries Python Functions Python Modules Python Exceptions Handling Python Object Oriented Inheritance in Python Python Regular Expressions Python Networking Programming Python Multithreaded Programming Python CGI Programming Python Database Connection Python Metaprogramming Python Data Processing And Encoding Python GUI Programming

C++ Data Abstraction

C++ Data Abstraction Object oriented programming offers various features to write programs with various concepts that help to minimize problems and increase flexibility in program. One of the features of object oriented programming is Data abstraction. In this chapter you will learn about how the concept data abstraction is carried out within the C++ program. What is Data abstraction? Data abstraction allows a program to ignore the details of how a data type is represented. Abstraction (derived from a Latin word  abs , meaning away from and  trahere , meaning to draw) refers to the act of representing essential features without including the background details or explanations. C++ classes use the technique of abstraction and are defined as a list of abstract attributes such as width, cost, size etc and functions to operate on these attributes. They put in a nutshell all the essential properties of an object that are required to be created. The attributes are therefore called...