Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
50 views

C Variables Literals

1) Variables are containers that hold data in memory and are given unique names (identifiers). Variables can have their values changed. 2) Literals are values that cannot be altered, such as integers (decimal, octal, hexadecimal), floating-point numbers, characters, escape sequences, and strings. 3) Constants are variables declared with const that cannot change their values, or can be defined using #define. Constants and literals provide fixed, unchanging values in a program.

Uploaded by

Ashish Rajput
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
50 views

C Variables Literals

1) Variables are containers that hold data in memory and are given unique names (identifiers). Variables can have their values changed. 2) Literals are values that cannot be altered, such as integers (decimal, octal, hexadecimal), floating-point numbers, characters, escape sequences, and strings. 3) Constants are variables declared with const that cannot change their values, or can be defined using #define. Constants and literals provide fixed, unchanging values in a program.

Uploaded by

Ashish Rajput
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

C Variables, Constants and Literals

Variables
In programming, a variable is a container (storage area) to hold data.

To indicate the storage area, each variable should be given a unique name (identifier).
Variable names are just the symbolic representation of a memory location. For example:
1. int playerScore = 95;
Here, playerScore is a variable of int type. Here, the variable is assigned an integer
value 95.

The value of a variable can be changed, hence the name variable.

1. char ch = 'a';
2. // some code
3. ch = 'l';

Rules for naming a variable


1. A variable name can have only letters (both uppercase and lowercase letters),
digits and underscore.
2. The first letter of a variable should be either a letter or an underscore.
3. There is no rule on how long a variable name (identifier) can be. However, you
may run into problems in some compilers if the variable name is longer than 31
characters.

C is a strongly typed language. This means that the variable type cannot be changed
once it is declared. For example:

1. int number = 5; // integer variable


2. number = 5.5; // error
3. double number; // error
Here, the type of number variable is int. You cannot assign a floating-point (decimal)
value 5.5 to this variable. Also, you cannot redefine the data type of the variable
to double. By the way, to store the decimal values in C, you need to declare its type to
either double or float.
Literals
A literal is a value (or an identifier) whose value cannot be altered in a program. For
example: 1, 2.5, 'c' etc.

1. Integers
An integer is a numeric literal(associated with numbers) without any fractional or
exponential part. There are three types of integer literals in C programming:

 decimal (base 10)
 octal (base 8)
 hexadecimal (base 16)

For example:

Decimal: 0, -9, 22 etc

Octal: 021, 077, 033 etc

Hexadecimal: 0x7f, 0x2a, 0x521 etc

In C programming, octal starts with a 0, and hexadecimal starts with a 0x.

2. Floating-point Literals
A floating-point literal is a numeric literal that has either a fractional form or an exponent
form. For example:

-2.0

0.0000234
-0.22E-5

Note: E-5 = 10-5

3. Characters
A character literal is created by enclosing a single character inside single quotation
marks. For example: 'a', 'm', 'F', '2', '}' etc;

4. Escape Sequences
Sometimes, it is necessary to use characters that cannot be typed or has special
meaning in C programming. For example: newline(enter), tab, question mark etc.

In order to use these characters, escape sequences are used.

Escape
Sequences Character

\b Backspace

\f Form feed

\n Newline

\r Return

\t Horizontal tab

\v Vertical tab

\\ Backslash

\' Single quotation mark

\" Double quotation mark


Escape
Sequences Character

\? Question mark

\0 Null character

Escape Sequences

5. String Literals
A string literal is a sequence of characters enclosed in double-quote marks. For
example:

"good" //string constant

"" //null string constant

" " //string constant of six white space

"x" //string constant having a single character.

"Earth is round\n" //prints string with a newline

Constants
If you want to define a variable whose value cannot be changed, you can use
the const keyword. This will create a constant. For example,
1. const double PI = 3.14;
Notice, we have added keyword const.
Here, PI is a symbolic constant; its value cannot be changed.
1. const double PI = 3.14;
2. PI = 2.9; //Error
You can also define a constant using the #define preprocessor directive.

You might also like