define the data type qualifiers in c


 

Define the Data Type Qualifiers in c Language?

1. const
2. volatile

const: The const qualifier is used to tell C that the variable value can't change after initialization.

Eg:

const float pi=3.14159;

pi can't be changed at a later time within the program.

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: define the data type qualifiers in c
Reference No:- TGS0304620

Expected delivery within 24 Hours