Does it make any difference to declare a double precision variable as
double precision :: var1, var2, var3
var1 = 1d0
var2 = 1.d0
var3 = 1.0d0
I believe var2
and var3
are identical. Are there any errors that may appear if we do not include the dot in the declaration (as in var1
)?