Understanding Data Types in C Programming

Table of Contents

Understanding Data Types in C Programming

C language was developed in the early 1970s by Dennis Ritchie and Ken Thompson at Bell Labs. Its development was closely linked to the creation of the Unix operating system. Initially, Thompson wanted a programming language for developing utilities for the new platform, so he created a cut-down version of the BCPL language, which he called B. In 1971, Ritchie started to improve B to utilize the features of the more powerful PDP-11, which led to the creation of a new language called C. The C compiler and some utilities made with it were included in Version 2 Unix. By Version 4 Unix, the Unix kernel was extensively re-implemented in C. The first edition of The C Programming Language book was published in 1978, which served as an informal specification of the language, commonly referred to as “K&R C.”

commonly used data types and their sizes:

NOTE=> It’s important to note that the size of these data types may vary depending on the system and compiler being used.

Data TypeDescriptionSize (in bytes)
charUsed for storing characters or small integers1
intUsed for storing integers2 or 4
shortUsed for storing small integers2
longUsed for storing large integers4 or 8
floatUsed for storing floating-point numbers4
doubleUsed for storing double-precision floating-point numbers8
long doubleUsed for storing extended-precision floating-point numbers10 or 12
unsigned charUsed for storing positive characters or integers1
unsigned intUsed for storing positive integers2 or 4
unsigned shortUsed for storing positive small integers2
unsigned longUsed for storing positive large integers4 or 8

 

“In the C programming language, there is a wide array of data types used for defining variables and storing different types of data. Here are some commonly employed data types in C:

1. The ‘int’ data type is used for storing whole numbers (integers) without decimals, like 10, -5, 0.

2. The ‘float’ data type is utilized for storing numbers with decimal points, known as floating-point numbers. For example, 3.14, -0.5, 2.0.

3. The ‘double’ data type is similar to ‘float,’ but it can hold larger and more precise floating-point numbers. Examples include 3.14159, -0.5678, 2.71828.

4. The ‘char’ data type is used for storing individual characters, such as ‘A’, ‘b’, ‘5’.

5. The ‘short’ data type is used for storing smaller integers, but its range is narrower compared to ‘int.’ For instance, 100, -50, 0.

6. The ‘long’ data type is employed for storing larger integers. It has a wider range compared to ‘int.’ Examples include 1000000, -50000, 0.

7. The ‘unsigned’ modifier can be applied to ‘int,’ ‘short,’ or ‘long’ to represent only positive values. It expands the range of positive values that can be stored.

8. The ‘_Bool’ data type is used for storing boolean values, indicating true or false. The value 0 represents false, while any non-zero value represents true.

9. The ‘void’ data type is used to denote the absence of a specific data type. It is often used as the return type for functions that don’t return a value.

These are the essential data types in C programming. Additionally, C allows programmers to create custom data types using structures and enumerations.”

				
					#include <stdio.h>

int main() {
    // Integer data types
    int age = 25;
    short count = 100;
    long population = 1000000;

    // Floating-point data types
    float pi = 3.14;
    double height = 180.5;

    // Character data type
    char grade = 'A';

    // Unsigned modifier
    unsigned int positiveNum = 100;

    // Boolean data type
    _Bool isTrue = 1;

    // Void data type (used as return type for function)
    void *ptr = NULL;

    // Printing the values
    printf("Age: %d\n", age);
    printf("Count: %hd\n", count);
    printf("Population: %ld\n", population);
    printf("Pi: %.2f\n", pi);
    printf("Height: %.1lf\n", height);
    printf("Grade: %c\n", grade);
    printf("Positive Number: %u\n", positiveNum);
    printf("Is True: %d\n", isTrue);
    printf("Pointer: %p\n", ptr);

    return 0;
}

				
			

My Blogging Page

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *