Tag Archives: Data Types

Data Types in C | Set 2

Prerequisite – Data Types in C | Set 1 In C programming, data types are used to specify the type of a variable, which determines the amount of memory the variable takes up and the range of values that can be stored in that memory. The data types in C can be classified into the following categories:   Primitive… Read More »

Data Types in C | Set 1

Data types define the type of data a variable can hold. C language has some predefined set of data types to handle various kinds of data that we can use in our program. These datatypes have different storage capacities. In C programming, data types are declarations for variables. This determines the type and size of data associated with… Read More »