×

Type qualifiers in C

Type qualifiers in C: In the C programming language, type qualifiers are the keywords that prepend to the variables to change their accessibility, i.e., we can tell that the type qualifiers are used to change the properties of variables. In other words, the qualifiers are the keywords that are applied to the data types or the type modifiers in C.

Types of type qualifiers

There are three types of type qualifier variables in the C programming language.

  • const
  • volatile
  • restrict

Type qualifiers are basically the keywords that are used to modify the properties of the existing variables.

1. Const qualifier

  • The const qualifier is used to declare a variable to be read only (constant), the value may not be changed, and it can be declared using the keyword const.
  • This qualifier will help to prevent accidental changes in the values.
  • In order to declare a const qualifier, include the keyword const before or after any data type.

Syntax

The syntax for declaring a const qualifier is:

 const data-type constant-name = value;
 Or
 data-type const constant-name = value; 

Use the const type qualifier to qualify an object whose value cannot be changed at any given time.

The objects qualified by the ‘const’ keyword cannot be modified, i.e., an object declared as a ‘const’ cannot serve as an operand in an operation that changes its value in further operations.

 int const *p_ci;      /* Pointer to constant int*/
 int const (*p_ci);   /* Pointer to constant int*/
 int *const cp_i;     /* Constant pointer to int*/
 int (*const cp_i);   /*Constant pointer to int*/
 int volatile vint;     /* Volatile integer*/ 

E.g.: 

 #include <stdio.h>
 #include <conio.h>
 #include <string.h>
 int main()
 {
 const float pi = 3.14;
 printf (“The value of pi is = %f \n”, pi);
 return 0;
 } 

Output

Type qualifiers in C
  • The const qualifier can be used to qualify any data type, including the single member of a structure or a union.
  • If const is specified when declaring an aggregate type, all the aggregate type members are treated as objects qualified with const. When the keyword const is used to qualify a member of any aggregate type, only that member will be qualified.

2. Volatile qualifier

  • A volatile qualifier is used to declare a variable that can be changed at any point of time and explicitly, i.e., it always tells the compiler that the variable’s value may change at any time.
    • It will be useful for embedding programming in order to keep the updated value that can be changed from various interrupts.
    • To declare a volatile variable, the keyword ‘volatile’ is used.
    • In order to declare a volatile variable, include the keyword volatile before or after the data type.

Syntax

The syntax to declare ta volatile variable is as follows:

 volatile data-type variable-name;
 Or
  data-type volatile variable-name; 

An object without the volatile specifier will not tell the compiler to perform the optimizations. It indicates that the compiler can apply any optimizations depending on the program context and compiler optimization levels.

E.g.:

 #include <stdio.h>
 #include <conio.h>
 #include <string.h>
 int x = 0;
 volatile int y = 0;
 int main()
 {
 y = 0; /* the compiler optimizes the code and else will be optimized
 because the variable(x) will never be other than 0*/
 if (x == 0)
 {
 printf (“The value of the variable x is zero \n”);
 }
 else
 {
 printf (“The value of the variable x is not zero \n”);
 }
 if (x == 0)
 {
 printf (“The value of the variable y is zero \n”);
 }
 else
 {
 printf (“The value of the variable y is not zero \n”);
 }
 return 0;
 } 

Output

Type qualifiers in C

Optimizations that are defeated by using the volatile qualifier and can be categorized as follows:

  • Optimizations alter an object's duration, such as cases where referencing to an object is shifted or moved to another part of the program.
  • Optimizations alter an object's locality, such as cases where a variable serving as a loop counter can be stored in a register to save the cost of doing any memory reference.
  • Optimizations alter an object's existence, such as loop induction to eliminate the variable reference.

3. Restrict qualifier

  • The new type of qualifier introduced to C99 can be applied to pointer declarations.
  • It qualifies the pointer, not what it points at.
  • It is an optimization hint that no other pointer in the present scope refers to the exact location.
  • It acts as a contract between a developer and a compiler. If you do alias a pointer marked with restrict, then the result is undefined.

E.g.:

 #include <stdio.h>
 void my_function(int* x, int* y, int* restrict z) {
    *x += *z;
    *y += *z;
 }
 main(void) {
    int x = 10, y = 20, z = 30;
    my_function(&x, &y, &z);
    printf("%d %d %d", x, y, z);
 } 

Output

Type qualifiers in C

Marking union members as restrict will tell the compiler that only some of the options can be accessed in scope, allowing the compiler to optimize the access to members.


Related Topics

Sizeof in C

A pointer in C is defined as a variable that stores the information of the address of another variable. A pointer can be incremented or decremented, which means we can...

4 minutes read.

#error #pragma in C

#error, #pragma in C #error, also known as the error directive in the C language. It will not allow you to make any compilation fail and immediately issues a statement which...

4 minutes read.

Use of Structure in C

We can usually use arrays in C programming to store elements of the same data type. We can use strings to store multiple elements of a character data type. Still,...

4 minutes read.

Integer Promotions in C

As we know that some of the data types such as char, short int, Enum takes a smaller number of bytes than compared to int. When an operation is applied...

3 minutes read.

Int in C

The keyword int in C programming stands for integer and it is a data type which is used for variable declarations or declaration of functions of different types. Similar to...

4 minutes read.

memcmp() in C

Introduction: In this article we are discuss about memcmp() function in C. This function permits the person to evaluate the bytes of the two characters, as mentioned above. Depending on...

4 minutes read.

How to use atoi() function in C

Introduction: The atoi() is a function used in C programming language. This function converts string characters to the integer value. The atoi() function converts the input string to the return type of...

4 minutes read.

Types of Function in C

A function is a piece of code that accomplish a certain operation for a specific task. There are two types of functions in C: System-defined function (Library Function)User-defined function 1. System defined Function...

8 minutes read.

Scope of variables in C

Introduction The scope of variables in C can be defined as the scope of reach of a variable, the term scope is used to determine the visible range of an object....

4 minutes read.

C Program for Mean and Median of an Unsorted Array

In this tutorial, we will look at how to determine the mean and median of a given unsorted array. To determine the Mean: To get the average, mean is determined. The formula...

2 minutes read.

Ceil and Floor in C

In arithmetic, a rational number is a number that can be expressed as the quotient p/q of two integers. Where q is zero. The set of rational numbers includes all...

6 minutes read.

C Program for Extended Euclidean algorithms

The Euclidean method simply computes the GCD (greatest common divisor) of two numbers, p and q. (Let's assume) The GCD of two integers is the greatest number that divides them both....

3 minutes read.

What is a buffer in C?

A buffer is an area of memory set aside for the temporary storage of data. A data buffer (or just buffer) is a region of a physical memory storage used to...

5 minutes read.

Purpose of a Function Prototype in C

A function prototype in C is a declaration of a function that specifies the function's name, return type and parameters. It has the following syntax: return_type function_name(parameter_list); For example, the prototype for...

4 minutes read.

Simple hash() function in C

Introduction In this context, we briefly discuss HASH FUNCTION, HASHING or HASH TABLE in C. It is a function used to map data and mapped arbitrary sizes to the fixed-size values. The...

7 minutes read.

Flexible Array Members in a Structure in C

There is flexibility to declare array from c99 generation onwards that declaration of the collections can be made possible without even mentioning its dimension, which means that the displays are...

4 minutes read.

Recursion in C

Recursion is a programming technique that allows the programmer to call the function within the same function. The function which calls the same function is known as recursive function but a...

1 minute read.

If Statement in C

Decision Control Statements We frequently desire one set of instructions to be carried out in one circumstance while another set of instructions to be carried out in a completely different circumstance....

3 minutes read.

Random Access - Lseek in C

Introduction lseek is a system call that is used to alter the location of the read/write pointer of a file descriptor. The lseek system call basically moves the current read/write location...

4 minutes read.

Length of an Array Function in C

In C, there is no built-in function to get the length of an array. However, there are a few ways you can determine the length of an array. It is necessary...

15 minutes read.