C# Data Types and Literals6 min read

As we know the variables holds the data and the type of data that it holds refers to the data-types. Theses types are: integer, float, double, boolean, etc. and each of this data-types has a specific size such as integer has the memory size of 4 byte and so on.

Now, C# has categorized its data-types in three different parts:

  • Value types: int, float, short, char, etc.
  • Reference types: String, Class, Object and Interface
  • Pointer types: simply Pointers
C# data-types

C# contains two general categories of built-in data types: value types and reference types.

The difference between the two types is what a variable contains.

  • For a value type, a variable holds an actual value, such 3.1416 or 212.
  • For a reference type, a variable holds a reference to the value.

Let us discuss each of them:

1. Value types

Value types are derived from the class System.ValueType. They refer to the direct value used in the program such as integers, float, double and more. These data-types are both integer-based and floating-point types. Memory allocates for the memory space whenever some value type is assigned.

Value types are of two types, Predefined Data Types (Integer, Boolean, etc) and User-defined Data Types (Structure, Enumerations, etc).

Follow the table below for the value type list in C#:

Data TypesMemory SizeRange
int4 byte-2,147,483,648 to -2,147,483,647
float4 byte1.5 * 10-45 – 3.4 * 1038, 7-digit precision
short2 byte-32,768 to 32,767
char1 byte-128 to 127
long8 byte-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
double8 byte5.0 * 10-324 – 1.7 * 10308, 15-digit precision
signed short2 byte-32,768 to 32,767
unsigned short2 byte0 to 65,535
signed int4 byte-2,147,483,648 to -2,147,483,647
unsigned int4 byte0 to 4,294,967,295
signed long8 byte?9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
unsigned long8 byte0 – 18,446,744,073,709,551,615
decimal16 byteat least -7.9 * 10?28 – 7.9 * 1028, with at least 28-digit precision

Memory size changes according to the Operating System.


2. Reference Types

Reference types are a bit different than Value Types, this kind of data-types do not contain the actual data stored in a variable, but they contain a reference to the variables.

Reference types specify to the memory location and if the data in the memory location is changed by one of the variables, the other variable automatically reflects this change in value.

They are also of two types, Predefined Data Types (Objects, String and Dynamic) and User-defined Data Types (Classes, Interface).


3. Pointer Type

It is also known as the indicator as it points to the address of a value. Pointer type variables store the memory address of another type. The abilities to do the task is same as the pointers that we use in C or C++.

Syntax(declaration):

It is declare using a * (asterisk symbol).


Literals

Literals refer to fixed values that are represented in their human-readable form. For the most part, literals and their usage are so intuitive that they have been used in one form or another by all the preceding sample programs.

For example, the number 100 is a literal.

C# literals can be of any simple type. The way each literal is represented depends upon its type.

  • To specify a float literal, append an F or f to the constant. For example, 10.19F is of type float.
  • To specify a decimal literal, follow its value with an m or M. For example, 9.95M is a decimal literal.

Literals can be any of the following types that can be used in a program:

  • Integer Literals
  • Floating-point Literals
  • Character Literals
  • String Literals
  • Null Literals
  • Boolean Literals

Integer Literals

An integer literal can be decimal(base 10) or hexadecimal(base 16) constant or Octal(base 8). A prefix specifies the base or radix: 0x or 0X for hexadecimal, and there is no prefix id for decimal.

For unsigned and signed, the suffix U and L are used. And the only rule is you can represent these suffix either in uppercase or the lower case and in any order you may prefer.

Example of integer literals:


Floating-Point Literals

Literals is called the floating-point literals if it has the following part:

  • an integer part
  • a decimal point
  • a fractional part
  • an exponent part

We can constitute them in decimal or exponential form. Representation of decimal form required the decimal point or the exponent or the both while the exponential form required the integer part or the fractional part or both.

By default, the floating-point literals are of double type and assigning it directly to a float variable is not possible. Instead, we can use the suffix for a float that is I or F.

Some example to show how can it be used and how it can’t be used in a program:


Character Literals:

Character literals are those literals that are enclosed within the single quote(‘ ‘) such as ‘S’ is stored as a character. we can represent the character literals in several ways:

  • Single quote: These are the plain character enclosed within a single quote. Eg: char c = 'S';
  • Unicode Representation: These are the universal character denoted in Unicode such as char c = '\u0061'; //this Unicode value represents a character.
  • Escape Sequence: This is also a character literal that can be used as a character such as char c = '\t';

The following table shows some escape sequence that are used in a program with their meaning. Go through them carefully.

Escape sequenceMeaning
\\\ character
\’‘ character
\”” character
\?? character
\aAlert or bell
\bBackspace
\fForm feed
\nNewline
\rCarriage return
\tHorizontal tab
\vVertical tab
\xhh . . .Hexadecimal number of one or more digits

String Literals

This type of literals is enclosed within double-quotes (“”) or with @””. A string also enclosed the same character as the character literal does such as plain character, universal characters and more.

The below example show how the string literals are represented in a program.

Boolean Literals

This literal has only two values that show the result and they are true and false. You can assign the value at the beginning while declaring the boo as shown in an example below.


MORE

C Program to search an element in an array using Pointers

A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array …

C Program to find the sum of the digits of a number using recursion function

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation: Function Definition: sumDigits(int n) This function calculates …

C program to find factorial of a numberĀ using Ternary operator with Recursion

Recursion refers to the function calling itself directly or in a cycle. Before we begin, you should have the knowledge of following in C Programming: …

C Program to Add Two Numbers Using Call by Reference

The program takes the two numbers from the user and passes the reference to the function where the sum is calculated. You may go through …

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …