Explicit conversion to 32-bit real number: CSng, single

The required type conversion can be carried out as follows:

explicit conversion to 32-bit real number

Description

( type ) expression

Input


Output

Note: In C like languages the data type size may be different depending on compiler and architecture, we show only one standard look.
Compatible programing languages:
C | Visual C++ .NET | C++ | C# | Java

Examples

Example

Explicit conversion to 32-bit real number the possible of use:
float x = 3.14159265359;  // x = 3.14159274
float y = 123456789;      // y = 123456792.0
y =(float)(x * y);       // z = 387850976.0

CSng

Description

 CSng (expr)
Used keywords: csng

Input


Output

Compatible programing languages:
Basic | FreeBASIC | Visual Basic .NET

Examples

Basic

Explicit conversion to 32-bit real number the possible of use:
Dim x As single= 3.14159265359  ' x = 3.14159274
Dim y As single= 123456789      ' y = 123456792.0
y =CSng((x * y))       ' z = 387850976.0

single

Description

 single (expr)
Used keywords: single

Input


Output

Compatible programing languages:
Pascal | Object Pascal | Free Pascal

Examples

Object Pascal

Explicit conversion to 32-bit real number the possible of use:
x:= 3.14159265359;  // x = 3.14159274
y:= 123456789;      // y = 123456792.0
y :=single((x * y));       // z = 387850976.0

You can find it in the following collections: explicit type conversions
Explicit conversion to 32-bit real number in another programming language:
Languages: en hu cz sk