Logo

Programming-Idioms

History of Idiom 79 > diff from v14 to v15

Edit summary for version 15 by :
New Csharp implementation by user [bdadams]

Version 14

2015-11-30, 12:37:31

Version 15

2016-02-16, 18:52:14

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Code
float y = x;