- C - Discussion
- C - Useful Resources
- C - Quick Guide
- C - Input & Output
- C - Typedef
- C - Bit Fields
- C - Unions
- C - Structures
- C - Strings
- C - Pointers
- C - Arrays
- C - Scope Rules
- C - Functions
- C - Loops
- C - Decision Making
- C - Operators
- C - Storage Classes
- C - Constants
- C - Variables
- C - Data Types
- C - Basic Syntax
- C - Program Structure
- C - Environment Setup
- C - Overview
- C - Home
C Program Tutorial
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
C - Constants and Literals
Constants refer to fixed values that the program may not alter during its execution. These fixed values are also called pterals.
Constants can be of any of the basic data types pke an integer constant, a floating constant, a character constant, or a string pteral. There are enumeration constants as well.
Constants are treated just pke regular variables except that their values cannot be modified after their definition.
Integer Literals
An integer pteral can be a decimal, octal, or hexadecimal constant. A prefix specifies the base or radix: 0x or 0X for hexadecimal, 0 for octal, and nothing for decimal.
An integer pteral can also have a suffix that is a combination of U and L, for unsigned and long, respectively. The suffix can be uppercase or lowercase and can be in any order.
Here are some examples of integer pterals −
212 /* Legal */ 215u /* Legal */ 0xFeeL /* Legal */ 078 /* Illegal: 8 is not an octal digit */ 032UU /* Illegal: cannot repeat a suffix */
Following are other examples of various types of integer pterals −
85 /* decimal */ 0213 /* octal */ 0x4b /* hexadecimal */ 30 /* int */ 30u /* unsigned int */ 30l /* long */ 30ul /* unsigned long */
Floating-point Literals
A floating-point pteral has an integer part, a decimal point, a fractional part, and an exponent part. You can represent floating point pterals either in decimal form or exponential form.
While representing decimal form, you must include the decimal point, the exponent, or both; and while representing exponential form, you must include the integer part, the fractional part, or both. The signed exponent is introduced by e or E.
Here are some examples of floating-point pterals −
3.14159 /* Legal */ 314159E-5L /* Legal */ 510E /* Illegal: incomplete exponent */ 210f /* Illegal: no decimal or exponent */ .e55 /* Illegal: missing integer or fraction */
Character Constants
Character pterals are enclosed in single quotes, e.g., x can be stored in a simple variable of char type.
A character pteral can be a plain character (e.g., x ), an escape sequence (e.g., ), or a universal character (e.g., u02C0 ).
There are certain characters in C that represent special meaning when preceded by a backslash for example, newpne ( ) or tab ( ).
Following is the example to show a few escape sequence characters −
#include <stdio.h> int main() { printf("Hello World "); return 0; }
When the above code is compiled and executed, it produces the following result −
Hello World
String Literals
String pterals or constants are enclosed in double quotes "". A string contains characters that are similar to character pterals: plain characters, escape sequences, and universal characters.
You can break a long pne into multiple pnes using string pterals and separating them using white spaces.
Here are some examples of string pterals. All the three forms are identical strings.
"hello, dear" "hello, dear" "hello, " "d" "ear"
Defining Constants
There are two simple ways in C to define constants −
Using #define preprocessor.
Using const keyword.
The #define Preprocessor
Given below is the form to use #define preprocessor to define a constant −
#define identifier value
The following example explains it in detail −
#include <stdio.h> #define LENGTH 10 #define WIDTH 5 #define NEWLINE int main() { int area; area = LENGTH * WIDTH; printf("value of area : %d", area); printf("%c", NEWLINE); return 0; }
When the above code is compiled and executed, it produces the following result −
value of area : 50
The const Keyword
You can use const prefix to declare constants with a specific type as follows −
const type variable = value;
The following example explains it in detail −
#include <stdio.h> int main() { const int LENGTH = 10; const int WIDTH = 5; const char NEWLINE = ; int area; area = LENGTH * WIDTH; printf("value of area : %d", area); printf("%c", NEWLINE); return 0; }
When the above code is compiled and executed, it produces the following result −
value of area : 50
Note that it is a good programming practice to define constants in CAPITALS.
Advertisements